PDA

View Full Version : How to avoid [h1], [h2], [h3] tags to mess up the layout?


triff
10-30-2007, 11:33 AM
How to avoid [h1], [h2], [h3] tags to mess up the layout? Is there any way to set these tags so they don't change the font? No big bold letters with lots of space above and below?

SGL.

--------------- Added 1193762350 at 1193762350 ---------------

So, what I'm asking is:

Is their any way to customize f.ex. the [H1] tag for a particular style?

SGL.

Freesteyelz
10-31-2007, 06:27 AM
In Main CSS in the Additional CSS Definitions you can try:


h1 {
margin:-10px 0 -10px 0;
font-size:20px;
font-weight:normal;
}



Change the values to whatever you want. If that works then apply the CSS to h2 and h3.