Having trouble getting the top left background suitable in IE 6, this is the JS im using, it works for everything else on the page but not this :(
DD_belatedPNG.fix('#navigation, .logo, #contenttop, #content, #contentbottom, #flowerbottom, body');
Having trouble getting the top left background suitable in IE 6, this is the JS im using, it works for everything else on the page but not this :(
DD_belatedPNG.fix('#navigation, .logo, #contenttop, #content, #contentbottom, #flowerbottom, body');
Can you try giving the body an id
<body id="page_body">
and use that ID in the list:
DD_belatedPNG.fix('#navigation, .logo, #contenttop, #content, #contentbottom, #flowerbottom, #page_body');