BG images in firefox

P

Paul Watt

Hi,
I'm trying to use CSS to specify a Background image for a table cell using
the following code:

<td colspan="3" class="mainlogo">
<blockquote class="style2">
<p class="head">Florida Homes 1st
<p class="head"><span class="hdsmall">new and used properties in
Orlando
and the Gulf From Abbey Global - we care about you. </span>
</blockquote></td>
</tr>

and the CSS :

td.mainlogo{
background-image: url(img/bg_header.gif);
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
}

It works in IE but in Firefox the image doesnt display. Any ideas?

TIA

Paul
 
S

Steve Pugh

Paul said:
I'm trying to use CSS to specify a Background image for a
table cell using the following code:

td.mainlogo{
background-image: url(img/bg_header.gif);
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
}

It works in IE but in Firefox the image doesnt display. Any ideas?

Have you read the CSS spec for the background-attachment property? In
paticular the part where it tells you what 'fixed' backgrounds are
fixed to?

IE incorrectly displays the background in the wrong position.

Firefox displays it correctly - I bet that if you scroll the page so
that the table cell in question is right at the top of the screen then
the background will show up.

Steve
 
P

Paul Watt

Steve Pugh said:
Have you read the CSS spec for the background-attachment property? In
paticular the part where it tells you what 'fixed' backgrounds are
fixed to?

IE incorrectly displays the background in the wrong position.

Firefox displays it correctly - I bet that if you scroll the page so
that the table cell in question is right at the top of the screen then
the background will show up.

Steve

Cheers Steve, that did the trick.
 

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

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top