Ask a Question related to Macromedia Dreamweaver, Design and Development.
-
Joe {RoastHorse} #1
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...at around 20 pt indented to the right (to leave a gap on the left margin for> 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
formatting purposes so that it matches the other lists on the page. So, I
want it to look like this:this msg. Pretend they're spaces.)>
> __________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>
> Since I am a noob at HTML, how do I do it in DW6?
>
>
>
> Prince Of Thieves
>
>
Joe {RoastHorse} Guest
-
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... -
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... -
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... -
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... -
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... -
Thief_ #2
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
-
Joe {RoastHorse} #3
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...pages. If you could spare a few minutes by showing me some code that would> Thanks Joe.
>
> But I'm not that familiar with HTML, as I have always used FP to do web
do what I need I would be in-debted.>
>
>
> Prince Of Thieves
>
>
Joe {RoastHorse} Guest
-
Thief_ #4
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
-
Joe {RoastHorse} #5
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...item in (b), from my example, across to the right so that it lines up with> Thanks Joe,
>
> But how will your answer help me with my question? I need to "push" the
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



Reply With Quote

