Alignment problem
Collapse
This topic is closed.
X
X
-
Mr.CleanTags: None -
Carolyn Marenger
Re: Alignment problem
On Tue, 15 Mar 2005 14:11:59 -0600, Mr.Clean wrote:
[color=blue]
> Can someone help with the problem outlined here?
>
> http://www.austinmetrobaseball.com/divmenu.html[/color]
From what I see, you are trying to display data that is
ideally suited to a table.
Using tables to control page layout, is a bad habit formed before the dawn
of CSS. I used it myself for page layout, once upon a time. Now I use
CSS for the page layout and styling. I use tables when I have data that
fits a table.
You can use CSS to style and position your table on the page, but for that
data, use a table.
Carolyn
-
Mr.Clean
Re: Alignment problem
In article <pan.2005.03.15 .22.12.56.61288 9@marenger.com> ,
cajunk@marenger .com says...[color=blue]
> On Tue, 15 Mar 2005 14:11:59 -0600, Mr.Clean wrote:
>[color=green]
> > Can someone help with the problem outlined here?
> >
> > http://www.austinmetrobaseball.com/divmenu.html[/color]
>
> From what I see, you are trying to display data that is
> ideally suited to a table.
>[/color]
DUH, it says that on the page.
[color=blue]
> Using tables to control page layout, is a bad habit formed before the dawn
> of CSS. I used it myself for page layout, once upon a time. Now I use
> CSS for the page layout and styling. I use tables when I have data that
> fits a table.[/color]
That is a menu, it is not data for a table. It is to have a rollover
effect whereby the division name, Austin, Cpatiol, etc turns blue and
the age 28+, 38+ turns red. See the real thing in action here:
Baseball in Austin Austin Baseball Austin Baseball League Austin Hard Ball Austin Adult Baseball Austin Area Baseball Baseball Austin Baseball Central Texas
[color=blue]
>
> You can use CSS to style and position your table on the page, but for that
> data, use a table.[/color]
I'm TRYING to use CSS to do this, hence the purpose of the original
post.
Comment
-
Jim Moe
Re: Alignment problem
Mr.Clean wrote:[color=blue]
> Can someone help with the problem outlined here?
>[/color]
You are using divs inappropriately . divs are block level elements; to
get a linear layout you need inline elements, like a list.
<http://css.maxdesign.c om.au/listamatic/> has a lot of interesting menu
layouts. One may work for you.
--
jmm dash list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)
Comment
-
Spartanicus
Re: Alignment problem
Jim Moe <jmm-list.AXSPAMGN@s ohnen-moe.com> wrote:
[color=blue]
>divs are block level elements; to
>get a linear layout you need inline elements, like a list.[/color]
Lists are also block level elements.
--
Spartanicus
Comment
-
Mr.Clean
Re: Alignment problem
In article <y4SdnZp5NJ1NEa rfRVn-tg@giganews.com >, jmm-
list.AXSPAMGN@s ohnen-moe.com says...[color=blue]
> Mr.Clean wrote:[color=green]
> > Can someone help with the problem outlined here?
> >[/color]
> You are using divs inappropriately . divs are block level elements; to
> get a linear layout you need inline elements, like a list.
> <http://css.maxdesign.c om.au/listamatic/> has a lot of interesting menu
> layouts. One may work for you.
>
>[/color]
Yes, you are correct. I didn't think of that.
Thanks.
Comment
-
Jim Moe
Re: Alignment problem
Spartanicus wrote:[color=blue]
>
> Lists are also block level elements.
>[/color]
Urk. Yes, that is so.
--
jmm dash list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)
Comment
Comment