Results 1 to 5 of 5

Thread: chaning size of bullet point in html

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Apr 1999
    Location
    New Jersey
    Posts
    334

    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?

  2. #2
    Fanatic Member cpradio's Avatar
    Join Date
    Apr 2002
    Posts
    616
    You could try using CSS:

    <style>
    ul { font-size: 10px; }
    li { font-size: 12px; }
    </style>
    http://cpradio.net/
    Administrator @ WDForums and a Moderator @ WebXpertz City Forums

  3. #3
    Junior Member
    Join Date
    Aug 2000
    Location
    Rotterdam
    Posts
    19
    You could try using CSS:

    <style>
    ul { font-size: 8px; }
    li { font-size: 10px; }
    </style>



  4. #4
    Hyperactive Member bsw2112's Avatar
    Join Date
    Nov 2001
    Location
    ottawa, canada
    Posts
    292
    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

  5. #5

    Thread Starter
    Hyperactive Member
    Join Date
    Apr 1999
    Location
    New Jersey
    Posts
    334
    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
  •  



Click Here to Expand Forum to Full Width