Thread: CSS Problems
View Single Post
Old 04-28-2012, 04:11 AM   #11
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,741
Karma: 24031403
Join Date: Dec 2010
Device: Kindle PW2
Since the Kindle fonts on eInk devices support a number of characters commonly used for lists, you could fake a bullet list by using the actual characters.

The following characters are natively supported on eInk Kindles and will work without font embedding:

◦ 5 oz (150 g) de fromage de chèvre
▪ 5 oz (150 g) de fromage de chèvre
▫ 5 oz (150 g) de fromage de chèvre
▸ 5 oz (150 g) de fromage de chèvre
▹ 5 oz (150 g) de fromage de chèvre
○ 5 oz (150 g) de fromage de chèvre
● 5 oz (150 g) de fromage de chèvre

Code:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title></title>
  <style type="text/css">
  .list {padding-left: 1px;}
  p {margin-bottom:0; margin-top:0;}
  </style>
</head>
<body>
  <h2 id="heading_id_2">Bullet test</h2>
  <p class="list">◦&nbsp;5 oz (150 g) de fromage de chèvre</p>
  <p class="list">▪&nbsp;5 oz (150 g) de fromage de chèvre</p>
  <p class="list">▫&nbsp;5 oz (150 g) de fromage de chèvre</p>
  <p class="list">▸&nbsp;5 oz (150 g) de fromage de chèvre</p>
  <p class="list">▹&nbsp;5 oz (150 g) de fromage de chèvre</p>
  <p class="list">○&nbsp;5 oz (150 g) de fromage de chèvre</p>
  <p class="list">●&nbsp;5 oz (150 g) de fromage de chèvre</p>
</body>
</html>
Unfortunately, ADE doesn't natively support them. But they'll work if you embed a font.
Doitsu is offline   Reply With Quote