miggols99 said:
When I use Layout Tables, they mess up and squash pages. Frames are very
messy. I want to make a site with a header, a footer, a navigation bar on
the
left and one on the right. Does anyone know how to do this? If not do you
know any alternatives?
I do this all the time. The choices for layout are really:
-- HTML tables
-- CSS-positioned divs and other elements
I'm not certain what you mean by "Layout Tables" - if it's a special
FrontPage feature, that's not what I'm talking about.
HTML tables as a page layout tool work just fine, and are definitely less
complicated to learn to use. I often create a page design using tables,
generally "stacking" them rather than nesting them, wherever possible.
Often, a stack of tables set to about 780px wide: one for the masthead, one
for the main central area including the left navbar and main content, and
one for the footer.
Once this single page is just the way I want it, I take the masthead,
navbar, and footer, and make each into a server-side include. Then I save
the HTML page as a "page skeleton" (just to use a different term than
"template", since that usually means other things to us). Mine is just a
simple HTML page, with the include calls in it, which I "Save As" to create
each new page.
Hope that might help,