Any help would be greatly appreciated. Thanks, - Dave
Re: centering things within a table
am 16.11.2007 00:43:50 von dorayme
In article
m>,
"laredotornado@zipmail.com" wrote:
> I'm having trouble centering the vertical bars ("|") between the words
> in the nav at the top of this page
You could simply *not* put each link into a separate cell, (if
you are determined to use tables). Something like:
| | | |
would be simpler, no? Style the thing then for color of
foreground and background.
As a stepping stone to not use tables at all for laying out such
things. There is a modern movement around these parts that frowns
on using tables for anything but tabular data.
Google up for horizontal css lists when you have time.
--
dorayme
Re: centering things within a table
am 16.11.2007 04:45:29 von laredotornado
On Nov 15, 5:43 pm, dorayme wrote:
> In article
>
> m>,
>
> "laredotorn...@zipmail.com" wrote:
> > I'm having trouble centering the vertical bars ("|") between the words
> > in the nav at the top of this page
>
> You could simply *not* put each link into a separate cell, (if
> you are determined to use tables). Something like:
>
>
| | | |
>
> would be simpler, no? Style the thing then for color of
> foreground and background.
>
> As a stepping stone to not use tables at all for laying out such
> things. There is a modern movement around these parts that frowns
> on using tables for anything but tabular data.
>
> Google up for horizontal css lists when you have time.
>
> --
> dorayme
I like your idea of eliminating the table cells and having everything
in just one row, but when I do this, the words and horizontal bar
don't space themselves out to take up the entire width of the row.
How can I get them to spread out?
Thanks, - Dave
Re: centering things within a table
am 16.11.2007 22:04:32 von dorayme
In article
<1340bbb3-5117-4539-ac21-63096c0de0b0@b40g2000prf.googlegroups.co
m>,
"laredotornado@zipmail.com" wrote:
> On Nov 15, 5:43 pm, dorayme wrote:
> > In article
> >
> > m>,
> >
> > "laredotorn...@zipmail.com" wrote:
> > > I'm having trouble centering the vertical bars ("|") between the words
> > > in the nav at the top of this page
> >
> > You could simply *not* put each link into a separate cell, (if
> > you are determined to use tables). Something like:
> >
> >
| | | |
> >
> > would be simpler, no? Style the thing then for color of
> > foreground and background.
> >
> > As a stepping stone to not use tables at all for laying out such
> > things. There is a modern movement around these parts that frowns
> > on using tables for anything but tabular data.
> >
> > Google up for horizontal css lists when you have time.
> >
> > --
> > dorayme
>
> I like your idea of eliminating the table cells and having everything
> in just one row, but when I do this, the words and horizontal bar
> don't space themselves out to take up the entire width of the row.
> How can I get them to spread out?
>
> Thanks, - Dave
Here is something I knocked up for you quickly. There is no big
need given your material to get the menu to spread out over a 24"
screen. In most good browsers, max width works and I suggest
1000px for your page as a rough figure. I have kept your table
for the 4 boxes but thrown out most of your code. You really must
not do this table within table and lots of span stuff, you will
just get lost.
If you really want, you can just have the horizontal menu as a
table cell (you can float things inside the cell to solve your
desire to spread things out but I have no time to go though this
at the moment). I have given you a taste for a horizontal list
for it. Compare the actual html you have, in complexity, with
this:
http://tinyurl.com/24ovl7
You will need to configue it more to suit yourself.
The best exercise next is to be rid of the table altogether for
the 4 boxes. Not so hard to do. But enough for now...
O and reminder, for this sort of thing it might be an idea to
prepare the "good" pics to be the same total size, if evenness is
what you are after.