Forum Moderators: not2easy

Message Too Old, No Replies

Backround Image not scrolling in Mozilla

         

jameslarson111

12:08 am on Jun 30, 2006 (gmt 0)

10+ Year Member



My backround image does not scroll with the page when using a Modzilla browser.Does anyone know what I am doing wrong? Here is the CSS .Thanks.

#hdr {
height:120px;
background:#ffffff;
background-image: url(images/banner1.jpg)!important;
background-attachment: scroll!important;
color: black;
}

[edit reason]no site specifics thanks[/edit]

[edited by: SuzyUK at 4:24 pm (utc) on July 11, 2006]

doodlebee

4:19 am on Jun 30, 2006 (gmt 0)

10+ Year Member



Dude - that's *not* what you have in your CSS. When I visit that link (which, by the way, is a TOS violation and will probably be removed by a mod soon...just so you know), you have this in your CSS:

#hdr {
height:120px;
background:#ffffff;
background-image: url(URL/images/banner1.jpg)!important;
background-attachment: fixed!important;
color: black;
}

Which means you've got that background set as fixed. Which means it won't scroll.

Take that line out and you're fine.

jameslarson111

4:40 am on Jun 30, 2006 (gmt 0)

10+ Year Member



Thanks-doodlebee