Forum Moderators: not2easy
}
Looks great in any other browser, but for some reason the Layers are being forced to overlap due to the size of the header text. It is so big, that its pusing everything to overlap.
Thanks for any help/comments!
h1 {font-family: arial, verdana, helvetica, sans-serif;
font-style: normal;
font-weight: bold;
font-size: 1.0em;
font-color: #333333;
text-align: center;
I only have H1 tags on this page, but thanks for the tip about the H2,H3 ordering.
One other note not related to your problem but your font-family, font-style, and font-weight definitions are not necessary. Style and weight are the default for H tags and family is inherited(if you have it declared in your body already).
right:
h1 page title
h2 subtitle
h3 topic 1
-- content for 1
h4 subtopic 1a
-- content for 1a
h4 subtopic 1b
-- content for 1b
h3 topic 2
wrong:
h1 page title
h2 subtitle
h1 topic 1
-- content for 1
h2 subtopic 1a
-- content for 1a
h2 subtopic 1b
-- content for 1b
h2 topic 2
H-tags are /not/ for enhancing the text... they are heading indicators... tags like EM, STRONG, B, and I are text enhancements...
when you validate your page at www.w3c.org, make sure you check the "display outline" box and then look to it at the end of the results... if it doesn't represent an outline of your document then you are abusing the H-tags... validation is your friend...
this related thread should help [webmasterworld.com...]