Page added on January 7, 2009

 Email This Post                       Print This Post

Numbered List and Bulleted List

The Blogger’s post editor gives you one number style for an Ordered (Numbered) list and one bullet style for an Unordered (Bulleted) list. Here, we shall let you know how you can change these styles to add variation to your posts. We shall also discuss how links can be incorporated into such lists and how a marquee tag can be added to make the list scroll.

Ordered (Numbered) List

We like to use ordered lists to assign numbers to a list of items or a step-by-step instructional guide. Inserting it into our posts is easy. When you are creating a post, choose the “Compose” mode and click the button in the toolbar that says “Numbered list”. Type your items and press Enter after every item. You will see numbers 1, 2, 3 and so on assigned to each item.

Numbered List and Bulleted List

Sometimes, you may not want numbers. For example, if you have a Table of Contents, you may want to use capital letters A, B, C to the list. If you have a long article with several lists, you may want to use Roman numbers I, II, III too. What you do after typing the list is to change the mode from “Compose” to “Edit HTML”. You will see the HTML that looks like this:-

How to bake a chocolate cake


  1. Preheat oven.

  2. Sift together flour, baking powder, baking soda, cocoa and sugar.

  3. Add water and oil.

  4. Add eggs, milk and vanilla.

  5. Pour batter into pan.

  6. The

      tag represents “ordered list” and each list item starts with
    1. tags. Notice that they must have closing tags. After each list item, there is a
    2. tag and after the entire ordered list, there is a closing
    tag. If I want the numbers changed to capital letters, I can add a type=”A” into the code. The code will now be this:-
      type=”A”
    >
  7. Preheat oven.

  8. Sift together flour, baking powder, baking soda, cocoa and sugar.

  9. Add water and oil.

  10. Add eggs, milk and vanilla.

  11. Pour batter into pan.

  12. When you click back to “Compose” mode, this is how the post will look:-

    Numbered List and Bulleted List

    The other possible types that you can use are the Lowercase letters, Roman numerals, and Lowercase Roman numerals.

    type=”a” will give you a, b, c
    type=”I” will give you I, II, III
    type=”i” will give you i, ii, iii

    Unordered (Bulleted) List

    Using the above cake recipe example, the ingredient list need not have any particular order. Instead of numbers, we will use “Bulleted list” in the toolbar to type in our ingredients. The standard Blogger style is a Disc bullet (a black colored dot).

    Numbered List and Bulleted List

    This time, when we view the code under “Edit HTML” mode, we will see this:-

    Ingredients


    • all purpose flour

    • baking powder

    • baking soda

    • cocoa

    • sugar

    • water

    • oil

    • eggs

    • milk

    • vanilla

    • The

        tag means “unordered list”. The other styles you can change the bullets to are the circle and the square. Just like the ordered list, we can add within the
          tag the type of bullet. We can have:-

            type=”circle”>

            Or

              type=”square”>

              We have incorporated both of them into our sample to let you see how they would appear:-

              Numbered List and Bulleted List

              Link List

              Instead of having just words, we can have text links within an ordered or unordered list. A detailed writeup of text link codes can be found at our article on Hyperlinks and Image Links. Put the text link code into the numbered or bulleted list. For example, this HTML code:-

              Will give you this, with links opening in new windows or tabs when clicked.

              You can also replace the text links with image links.

              Scrolling Links

              We can make the links scroll by combining the above code with the marquee tag. The various styles of scrolling text and their attributes were explained in our article on Scrolling Text – Marquee HTML Code.

              If we take one of the specimen scrolls, this scrolling text code:-

              Will give you a link list that scrolls upwards:-

              The Blogger’s post editor gives you one number style for an Ordered (Numbered) list and one bullet style for an Unordered (Bulleted) list. Here, we shall let you know how you can change these styles to add variation to your posts. We shall also discuss how links can be incorporated into such lists and how a marquee tag can be added to make the list scroll.

              Ordered (Numbered) List

              We like to use ordered lists to assign numbers to a list of items or a step-by-step instructional guide. Inserting it into our posts is easy. When you are creating a post, choose the “Compose” mode and click the button in the toolbar that says “Numbered list”. Type your items and press Enter after every item. You will see numbers 1, 2, 3 and so on assigned to each item.

              Numbered List and Bulleted List

              Sometimes, you may not want numbers. For example, if you have a Table of Contents, you may want to use capital letters A, B, C to the list. If you have a long article with several lists, you may want to use Roman numbers I, II, III too. What you do after typing the list is to change the mode from “Compose” to “Edit HTML”. You will see the HTML that looks like this:-

              How to bake a chocolate cake


              1. Preheat oven.

              2. Sift together flour, baking powder, baking soda, cocoa and sugar.

              3. Add water and oil.

              4. Add eggs, milk and vanilla.

              5. Pour batter into pan.

              6. The

          tag represents “ordered list” and each list item starts with
        1. tags. Notice that they must have closing tags. After each list item, there is a
        2. tag and after the entire ordered list, there is a closing
        tag. If I want the numbers changed to capital letters, I can add a type=”A” into the code. The code will now be this:-
          type=”A”
        >
      • Preheat oven.

      • Sift together flour, baking powder, baking soda, cocoa and sugar.

      • Add water and oil.

      • Add eggs, milk and vanilla.

      • Pour batter into pan.

      • When you click back to “Compose” mode, this is how the post will look:-

        Numbered List and Bulleted List

        The other possible types that you can use are the Lowercase letters, Roman numerals, and Lowercase Roman numerals.

        type=”a” will give you a, b, c
        type=”I” will give you I, II, III
        type=”i” will give you i, ii, iii

        Unordered (Bulleted) List

        Using the above cake recipe example, the ingredient list need not have any particular order. Instead of numbers, we will use “Bulleted list” in the toolbar to type in our ingredients. The standard Blogger style is a Disc bullet (a black colored dot).

        Numbered List and Bulleted List

        This time, when we view the code under “Edit HTML” mode, we will see this:-

        Ingredients


        • all purpose flour

        • baking powder

        • baking soda

        • cocoa

        • sugar

        • water

        • oil

        • eggs

        • milk

        • vanilla

        • The

            tag means “unordered list”. The other styles you can change the bullets to are the circle and the square. Just like the ordered list, we can add within the
              tag the type of bullet. We can have:-

                type=”circle”>

                Or

                  type=”square”>

                  We have incorporated both of them into our sample to let you see how they would appear:-

                  Numbered List and Bulleted List

                  Link List

                  Instead of having just words, we can have text links within an ordered or unordered list. A detailed writeup of text link codes can be found at our article on Hyperlinks and Image Links. Put the text link code into the numbered or bulleted list. For example, this HTML code:-

                  Will give you this, with links opening in new windows or tabs when clicked.

                  You can also replace the text links with image links.

                  Scrolling Links

                  We can make the links scroll by combining the above code with the marquee tag. The various styles of scrolling text and their attributes were explained in our article on Scrolling Text – Marquee HTML Code.

                  If we take one of the specimen scrolls, this scrolling text code:-

                  Will give you a link list that scrolls upwards:-

                  © Tips for New Bloggers






                  *
                  To prove you're a person (not a spam script), type the security text shown in the picture. Click here to regenerate some new text.


                  FEATURES, VIEWS & REVIEWS

                  Donec cursus

                  Donec cursus
                  Lorem ipsum dolor sit amet ipsum.

                  Sit ante dos

                  Sit ante dos
                  Curabitur ante ipsum gravida sit.

                  Lorem ipsum

                  Lorem ipsum
                  Sed imperdiet ipsum vulputate.



          RELATED STORIES

          LATEST NEWS HEADLINES

          ALSO IN THE NEWS

          Live Niche Affiliate Marketing Workshop

          NO, you are not seeing double!
          But you are seeing a post that has every chance of making 2009 your best year ever! Mark your calendar for January 30 to February 2nd and plan to be part of the Live Niche Affiliate Marketing Workshop!
          http://www.nicheaffiliatemarketingsystem.com/

          My friend and partner David Perdew organizes a workshop where you can learn [...]

          MORE STORIES

          Video Camera Guide For Bloggers

          HAVE YOUR SAY

          HAVE YOUR SAY Lorem ipsum dolor sit amet, consectetur adipiscing elit, dolor sit ipsum.

          SELECTABLE PROMOTIONAL BLOCK

          SELECTABLE PROMOTIONAL BLOCK Lorem ipsum dolor sit amet, consectetur adipiscing elit, dolor sit ipsum.

          MORE NEWS HEADLINES

          Subscribe to our feed       Are we delicious?       Add us to Digg       Bookmark us       Flickr gallery