Results 1 to 6 of 6

Thread: Bullets & HTML

  1. #1

    Thread Starter
    PowerPoster Pc_Madness's Avatar
    Join Date
    Dec 2001
    Location
    Melbourne, Australia
    Posts
    2,765

    Bullets & HTML

    How do I change the color of the Bullets using <UL> style of list???
    Don't Rate my posts.

  2. #2
    The Devil crptcblade's Avatar
    Join Date
    Aug 2000
    Location
    Quetzalshacatenango
    Posts
    9,091
    try this
    Code:
    <head>
      <style type="text/css">
        LI.list1 {color:red}
        .blacktext {color:black}
      </style>
    </head>
    
    <body>
      <ul>
        <li class="list1"><span class="blacktext">This is a red bullet</span>
      </ul>
    </body>
    Laugh, and the world laughs with you. Cry, and you just water down your vodka.


    Take credit, not responsibility

  3. #3
    Black Cat JoshT's Avatar
    Join Date
    Nov 2000
    Location
    WNY, USA
    Posts
    4,032
    There's also list-style-image in CSS.
    Josh
    Get these: Mozilla Opera OpenBSD
    I have books for sale: "MCSD in a Nutshell" and "VB Distributed Exam Cram" - PM me for details. Will also trade for a decent ATX Pentium 2 MB/CPU/RAM combo.

  4. #4

    Thread Starter
    PowerPoster Pc_Madness's Avatar
    Join Date
    Dec 2001
    Location
    Melbourne, Australia
    Posts
    2,765
    Thats whats in the post above mate.
    Don't Rate my posts.

  5. #5
    Black Cat JoshT's Avatar
    Join Date
    Nov 2000
    Location
    WNY, USA
    Posts
    4,032
    Originally posted by Pc_Madness
    Thats whats in the post above mate.
    No, it isn't -there's specific CSS applicable to lists:

    Code:
    ol {
    	list-style-position : inside;
    	list-style-type : square;
    	list-style-image : url(fileburst.gif);
    }
    Josh
    Get these: Mozilla Opera OpenBSD
    I have books for sale: "MCSD in a Nutshell" and "VB Distributed Exam Cram" - PM me for details. Will also trade for a decent ATX Pentium 2 MB/CPU/RAM combo.

  6. #6

    Thread Starter
    PowerPoster Pc_Madness's Avatar
    Join Date
    Dec 2001
    Location
    Melbourne, Australia
    Posts
    2,765
    <style type="text/css"> - That be the Start of a Inbuilt Style Sheet


    Well I only wanted to change the color, as the first post said.
    Don't Rate my posts.

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