|
-
Jul 2nd, 2002, 06:16 AM
#1
Thread Starter
Hyperactive Member
chaning size of bullet point in html
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?
-
Jul 2nd, 2002, 09:21 AM
#2
Fanatic Member
You could try using CSS:
<style>
ul { font-size: 10px; }
li { font-size: 12px; }
</style>
-
Jul 2nd, 2002, 09:30 AM
#3
Junior Member
You could try using CSS:
<style>
ul { font-size: 8px; }
li { font-size: 10px; }
</style>
-
Jul 2nd, 2002, 09:39 AM
#4
Hyperactive Member
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
-
Jul 2nd, 2002, 12:23 PM
#5
Thread Starter
Hyperactive Member
OK, well both of those solutions sound good, I'll play around with them. Thanks!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|