Forum Moderators: not2easy
I want to get rid of these but honestly can't see anything in my stylesheet.
It's the h6 tag generating the header. Take a look at my stylesheet and please if anyone can help me?
>> style.css <url gone per TOS#13 see below thanks..>
n.b. the header is in the div classes "xpage" and "ncol" as well.
Credits given on my site.
Regards
Andy
[edited by: SuzyUK at 1:53 am (utc) on Aug. 18, 2006]
In your case, your code looks like this:
h6{
text-align: left;
letter-spacing: 0px;
padding-top: 0px;
font: 20px Trebuchet MS;
color: #8A2602;
}
You should try setting the padding and/or margin, but more likely it's the line-height that's causing the space you're seeing. Try adding these to your style:
line-height: 100%;
padding: 0;
margin: 0;
Hope that helps.