Showing a list of items with bullets in front of them

Discussion in 'HTML & Website Design' started by cre8ive, Apr 3, 2008.

  1. #1
    I want to show a list of items with bullets in front of them. What I have currently is the following:

    I know, I know. This is so ... crappy sloppy. What can I do to clean this up? How can I do this in a more elegant way?

    (By the way, the following is where the test site is located: http://www.cre8iveonline.com/mechseal/index.htm )
     
    cre8ive, Apr 3, 2008 IP
  2. mds

    mds Active Member

    Messages:
    256
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    58
    #2
    You only have to do
    <ul>
    <li> YOUR TEXT INSIDE </li>
    <li> YOUR TEXT INSIDE </li>
    <li> YOUR TEXT INSIDE </li>
    </ul>

    Work it out yourself.
     
    mds, Apr 3, 2008 IP
  3. cre8ive

    cre8ive Peon

    Messages:
    295
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    And how can I display bullets in front of these items?
     
    cre8ive, Apr 3, 2008 IP
  4. kk5st

    kk5st Prominent Member

    Messages:
    3,497
    Likes Received:
    376
    Best Answers:
    29
    Trophy Points:
    335
    #4
    Have you even tried it? A bullet is the default.

    gary
     
    kk5st, Apr 3, 2008 IP
  5. cre8ive

    cre8ive Peon

    Messages:
    295
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #5
    I meant ask how I can display 'custom' bullet images. Sorry, I'm being a big spaced out today ...
     
    cre8ive, Apr 4, 2008 IP
  6. just-4-teens

    just-4-teens Peon

    Messages:
    3,967
    Likes Received:
    168
    Best Answers:
    0
    Trophy Points:
    0
    #6
    just-4-teens, Apr 4, 2008 IP
  7. Morishani

    Morishani Peon

    Messages:
    239
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #7
    style it with CSS like this
    
    <style type="text/css">
    ul
     {
     list-style-image:url('./images/arrow.jpg');
     }
    </style>
    
    HTML:
    Good luck :)
     
    Morishani, Apr 4, 2008 IP
  8. kk5st

    kk5st Prominent Member

    Messages:
    3,497
    Likes Received:
    376
    Best Answers:
    29
    Trophy Points:
    335
    #8
    It would be a Good Thing® if you were to RTFM.

    gary
     
    kk5st, Apr 4, 2008 IP