Hi all! I have a question about heading tags... I have problems with those heading-tags. When I am putting them inside 'tr' I get like another "<BR>" after closing the tag. Example: http://www.rentinginparis.com/why_us.html How can I avoid it ? Thanks! Guy.
I think the problem lies in your CSS. You have a class called 'maincontent' which specifies vertical-align: top; Perhaps you should try deleting this. You could also specify margin sizes for the h3 to alter the amount of space above and below your heading. T
Remove the heights, ie; <TR height="100%" > <TD class="maincontent" width="100%" height="100%" style=" padding:0,0,5,3"> And can also do what Amsterdam suggested, ie; h1 { margin:0; padding:0; }
Souuldn't the padding have what the 2 means? is it 2 em or 2 pixels? Usually a H1 has a default line height value and that could be set to something like 125% I would add a line height to your tag above and set it to what you like. line-height: 125%; If you want you could set padding and margins to 0 and then change them to your liking.