Firefox css help

P

Paul C

Hi
I created a page with a title banner. In IE the banner has a shorter height
than when I veiw the page in Firefox where the height is to large.
Here are the Css rules for the section and the url. The words about us is
surrounded by too much red in firefox I have treid to add height
restrictions but it seems that I am missing something
http://www.gbwr.co.uk/aboutus.htm

#headerbackground p {
font-family: Arial, Verdana, Helvetica, sans-serif;
font-size: 25px;
font-weight: bold;
color: #FFFFFF;
font-style: normal;

}


#headerbackground td {
background-image: url(../PageImages/index/redflagbackground.gif);
background-repeat: no-repeat;
background-color: #DD3236;
padding: 2px 5px 2px 9px;
background-position: center;

}

Thankyou
Paul M
 
M

Murray

Change this -

<td colspan="3" align="left" valign="top">
<p>About us<br>
</p></td>

to this -

<td colspan="3" align="left" valign="top">
<p style="margin-top:0;">About us<br>
</p></td>
 
P

Paul C

Thanks Murray
best wishes
Paul M

Murray said:
Change this -

<td colspan="3" align="left" valign="top">
<p>About us<br>
</p></td>

to this -

<td colspan="3" align="left" valign="top">
<p style="margin-top:0;">About us<br>
</p></td>
 
M

Murray

You're welcome. As you see, it wasn't FF at all. It was IE that was at
fault by collapsing that margin.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top