View Single Post
Old 12-01-2015, 08:03 AM   #8
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,735
Karma: 24031401
Join Date: Dec 2010
Device: Kindle PW2
Quote:
Originally Posted by Notjohn View Post
The html tag for a bullet is • -- hardly rocket science.
IMHO, hard-coding a bullet with • is usually a bad idea, since Kindles support bullet styles in KF8 files and will default to disc bullets in KF7 files.

For example, you could use the following code:

Spoiler:
Code:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title></title>
  <style type="text/css">    
	ul.circle {list-style-type: circle;}	
	ul.square {list-style-type: square;}
	ul.latin {list-style-type: lower-latin;}
  </style>
</head>

<body>
  <h3>Bullet styles</h3>

  <h4>Default disc bullet </h4>
  <ul>
    <li>chaos</li>
    <li>mayhem</li>
    <li>pandemonium</li>
  </ul>

  <h4>Circle</h4>
  <ul class="circle">
    <li>chaos</li>
    <li>mayhem</li>
    <li>pandemonium</li>
  </ul>

  <h4>Square</h4>
  <ul class="square">
    <li>chaos</li>
    <li>mayhem</li>
    <li>pandemonium</li>
  </ul>

  <h4>Lower Latin</h4>
  <ul class="latin">
    <li>chaos</li>
    <li>mayhem</li>
    <li>pandemonium</li>
  </ul>
</body>
</html>
Attached Thumbnails
Click image for larger version

Name:	bullets.png
Views:	458
Size:	15.4 KB
ID:	144217  
Doitsu is offline   Reply With Quote