Vicki Stebbins wrote:

> First problem: The footer div with an image doesn't show in Opera, 
> have tried everything to no avail.

It's all the way at the top of the page - with image and all, hidden
behind the other elements. No surprise, as absolute positioned elements
can't be cleared.

Try adding...
div#footer {
position: relative;
z-index: 10;
}
...and you'll see where it is.

Looks like Firefox is just placing the footer at the bottom by pure
chance, as it doesn't react on the applied styles either.

> Second: The page is a shopping cart and each product is within a div 
> with a class attribute which in turn is inside a content div (named 
> ufwus). The second product shows outside of the ufwus div and without
> the fonts etc.

Might be the 'missing </div> before </form>', or any of the other errors
the validator is complaining about.

> http://www.seco.com.au/cart.html

Too many source-code errors to do any serious browser-debugging.
<http://validator.w3.org/check?uri=http://www.seco.com.au/cart.html>
There should not be a single source-code error with that doctype, if you
want some cross-browser consistency. You should clean it up to an
error-free level - maybe apart from the embed.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to