I want to put h2 / h3 tags aroundm y code, but i want the text to remain the same design as before . <h2> blah blah blah </h2> so how do i define h2 { } to make it drop all its usual properties, and retain the earlier fonts properties ? Thanks alot!
You would have to specify exactly what you wish for it to look like. So maybe... h2 { font-size: 12px; font-weight: normal; font-family: your font family here; line-height: 14px; margin: 0; padding: 0; } You could also use a CSS shortcut to acheive the same goal... h2 { font: normal 12px/14px your font family here; margin: 0; padding: 0; }