Thread: CSS Problems
View Single Post
Old 04-24-2012, 05:48 PM   #4
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,739
Karma: 24031403
Join Date: Dec 2010
Device: Kindle PW2
As Dale has already pointed out, there's no space between the value and the unit, and you'll have to use decimal points not decimal commas.

As for the missing bullets, they're most likely caused by this line:
Code:
padding-left: 0px;
Try experimenting with larger values. For example:
Code:
padding-left: 0.5px;
Since empty bullets maybe a bit hard to see on an eInk display, I'd recommend using discs or other symbols instead:

Code:
list-style-type:disc;
Doitsu is offline   Reply With Quote