Formatting a bulleted list- how?

Ask a Question related to Macromedia Dreamweaver, Design and Development.

  1. #1

    Default Re: Formatting a bulleted list- how?

    [url]http://www.alistapart.com/stories/taminglists/[/url]

    joe



    "Thief_" <thief_@hotmail.com> wrote in message
    news:bfgkju$a84$1@forums.macromedia.com...
    > I've got a bulleted list as such:
    >
    > 3. a. Click Print to print a hard copy Click.
    > b. Click Done to exit.
    >
    > My problem is that the "3." is right on the left boundary. I want it to be
    at around 20 pt indented to the right (to leave a gap on the left margin for
    formatting purposes so that it matches the other lists on the page. So, I
    want it to look like this:
    >
    > __________3. a. Click Print to print a hard copy Click.
    > __________b. Click Done to exit.
    >
    > (I added the underscores to buffer the text for formatting purposes in
    this msg. Pretend they're spaces.)
    >
    > Since I am a noob at HTML, how do I do it in DW6?
    >
    >
    >
    > Prince Of Thieves
    >
    >

    Joe {RoastHorse} Guest

  2. Similar Questions and Discussions

    1. How to create bulleted text list in Illustrator CS?
      Sounds simple enough, but currently defeating me. I am in the process of designing a workflow diagram, and need to include a bulleted list. Rather...
    2. html formatting within List Component
      Hello. Due to drive failures, the source file for a little video viewer flash movie has been lost. it consists of a list component with the videos...
    3. aligning a bulleted list
      I am using the 3col_leftNav.css and 3col_leftNav.html templates that ship with Dreamweaver MX. I add a list into the 'advert' section, but it...
    4. Formatting in a drop down list in a grid
      I have a drop down list in a grid, and the data comes from a sql query. When I run the query in sql, the format of the data is nicely aligned, but...
    5. Formatting Decimals in a Combo Box or List Box
      I am having trouble with a couple of things. On separate forms, even different databases I have either a control that is a combo box or a field in...
  3. #2

    Default Re: Formatting a bulleted list- how?

    Thanks Joe.

    But I'm not that familiar with HTML, as I have always used FP to do web pages. If you could spare a few minutes by showing me some code that would do what I need I would be in-debted.



    Prince Of Thieves


    Thief_ Guest

  4. #3

    Default Re: Formatting a bulleted list- how?

    you need to familiarise yourself with html lists (<ul><ol><li>) and some
    css.
    if you use properly formatted lists and nested lists you can style them with
    css - which the article i posted explores at length.

    quick eg:

    <style>
    ol {
    list-style-type: decimal;
    }
    ol ol {
    list-style-type: lower-alpha;
    }
    </style>

    <ol>
    <li>item 1</li>
    <li>item 2
    <ol>
    <li>item a</li>
    <li>item b</li>
    </ol>
    </li>
    <li>item 3</li>
    </ol>

    joe






    "Thief_" <thief_@hotmail.com> wrote in message
    news:bfgtq9$svq$1@forums.macromedia.com...
    > Thanks Joe.
    >
    > But I'm not that familiar with HTML, as I have always used FP to do web
    pages. If you could spare a few minutes by showing me some code that would
    do what I need I would be in-debted.
    >
    >
    >
    > Prince Of Thieves
    >
    >

    Joe {RoastHorse} Guest

  5. #4

    Default Re: Formatting a bulleted list- how?

    Thanks Joe,

    But how will your answer help me with my question? I need to "push" the item in (b), from my example, across to the right so that it lines up with the item in (a). How is that achieved when, at the moment, the (a) & (b) lines are not lining up?

    Thanks.



    Prince Of Thieves


    Thief_ Guest

  6. #5

    Default Re: Formatting a bulleted list- how?

    if a & b are in an ordered list they will always line up - show me your code
    and maybe i can help further.

    joe




    "Thief_" <thief_@hotmail.com> wrote in message
    news:bfitnk$cjs$1@forums.macromedia.com...
    > Thanks Joe,
    >
    > But how will your answer help me with my question? I need to "push" the
    item in (b), from my example, across to the right so that it lines up with
    the item in (a). How is that achieved when, at the moment, the (a) & (b)
    lines are not lining up?
    >
    > Thanks.
    >
    >
    >
    > Prince Of Thieves
    >
    >

    Joe {RoastHorse} Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139