here is the site I am trying to correct
Click any of the product sections, and click the 'more info' link and a Pop Up window appears containing full product details. At standard size, the Popup appears fine, but it someone maximises the browser window the pop up is in, they get the background image of the main page below where the content (in this case the spec of the product) of the pop up finishes.
I have tried to fix this by giving the body of the Pop Up window an id="popup" in the page code and then specifying the following in the actinic.css
.popup html,body {
padding: 0px 0px 0px
margin-left: 0;
width: 100%;
height: 100%;
background: #FFFFFF;
background-image: none;
}
However, in Safari and Firefox I can still see the background image below the content - any ideas how I could fix this?
Click any of the product sections, and click the 'more info' link and a Pop Up window appears containing full product details. At standard size, the Popup appears fine, but it someone maximises the browser window the pop up is in, they get the background image of the main page below where the content (in this case the spec of the product) of the pop up finishes.
I have tried to fix this by giving the body of the Pop Up window an id="popup" in the page code and then specifying the following in the actinic.css
.popup html,body {
padding: 0px 0px 0px
margin-left: 0;
width: 100%;
height: 100%;
background: #FFFFFF;
background-image: none;
}
However, in Safari and Firefox I can still see the background image below the content - any ideas how I could fix this?
Comment