Internet Marketing by Carmen Maranon
main | blog | ezine | plug-n-go web biz | podcast | v-blog | members | ask carmen! | carmen approved | forumhelpdesk

Subscribe to My Weekly Marketing Journal...Name:E-mail:

Here are the Most Frequently Asked Questions I'm asked about Internet Marketing and Doing Business On The Internet... but with a cool twist. Not only will you read *my* solutions, but you will also have the read answers from other Internet marketers of all levels (newbies, intermediate & pro's), based on their personal experiences.

If you see a question that YOU have answers to, feel free to login and submit your answer! You must first register to post, but it's free and takes only a minute! If you would like to submit a question for consideration for this wiki, e-mail me with subject "AskCarmen Question."


Question: Changing the Style of Your Bullets in Your List.

Filed under: Web Design & Develop

Answer:

When creating a list on your website, you can change the style of your bullets by adding attributes to your <LI> tag. You can even use images as bullets!

LIST TYPE 1: Code

  • List item 1
  • List item 2
  • List item 3

LIST TYPE 2: Code

  • Your text goes here
    • Your text goes here
    • Your text goes here
    • Your text goes here
  • Your text goes here
  • Your text goes here

LIST TYPE 3: Code

  1. List item 1
  2. List item 2
  3. List item 3

LIST TYPE 4: Code

  1. List item 1
  2. List item 2
  3. List item 3

LIST TYPE 5: Code

  1. List item 1
  2. List item 2
  3. List item 3

LIST TYPE 6: Code

  • List item 1
  • List item 2
  • List item 3

LIST TYPE 1:

    <!— begin code here –>
    <UL>
    <li type=”circle”>List item 1
    <li type=”square”>List item 2
    <li type=”disc”>List item 3
    </UL>
    <!— end code here –>

LIST TYPE 2:

    <!— begin code here –>
    <UL>
    <li>Your text goes here
    <UL type=”circle”>
    <li>Your text goes here
    <li>Your text goes here
    <li>Your text goes here
    </UL>
    <li>Your text goes here
    <li>Your text goes here
    </UL>
    <!— end code here –>

LIST TYPE 3:

    <!— begin code here –>
    <ol type=a>
    <LI>List item 1
    <LI>List item 2
    <LI>List item 3
    </ol>
    <!— end code here –>

LIST TYPE 4:

    <!— begin code here –>
    <ol type=A>
    <LI>List item 1
    <LI>List item 2
    <LI>List item 3
    </ol>
    <!— end code here –>

LIST TYPE 5:

    <!— begin code here –>
    <ol type=I>
    <LI>List item 1
    <LI>List item 2
    <LI>List item 3
    </ol>
    <!— end code here –>

LIST TYPE 6:

    <!— begin code here –>
    <UL style=”list-style-image: url(http://yourdomain.com/checkbox.gif)”>
    <LI>List item 1
    <LI>List item 2
    <LI>List item 3
    </ul>
    <!— end code here –>

No Reader Submissions »

No comments yet.

RSS feed for reader answers for this post. | TrackBack URI

Leave a comment

You must be logged in to post a comment.