Quote:
Originally Posted by Turtle91
1) stop using inline styles… 
2) see rule #1
Seriously though, you do NOT need to use <br/> ANYWHERE to create space… that is what css is for. Use margin or padding.
|
Other than a list, how would this be accomplished with CSS?
Quote:
3) “list-style-type: none;” should work fine.
Code:
ul {list-style-type: none;}
|
This would affect Ordered lists as well. No?
I added this to my CSS:
ul.no-bullets {list-style-type: none;}
And this to my HTML:
<ul class="no-bullets">
ReadEra still displays bullets.
Thanks,
WV-Mike