I have an unordered list, but the bullet points are much to large. How can I reduce their size without changing the size of the text?
Printable View
I have an unordered list, but the bullet points are much to large. How can I reduce their size without changing the size of the text?
You could try using CSS:
<style>
ul { font-size: 10px; }
li { font-size: 12px; }
</style>
You could try using CSS:
<style>
ul { font-size: 8px; }
li { font-size: 10px; }
</style>
;)
you can insert a style for the <li> tag
<style>
li.bulletPic { list-style-image: url(bull.gif) }
</style>
<ul>
<li class = "bulletPic">one</li>
</ul>
this way you must cutom make your bullets which may not be what you want to do. Plus I don't think this code works in navigator 4.7 so i don't know if this helps at all. you can always create a table that mimics the list look
regards
bsw2112
OK, well both of those solutions sound good, I'll play around with them. Thanks!