user195257
user195257

Reputation: 3316

IE 6 PNG problem

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 :(

http://www.naomisalsi.com

DD_belatedPNG.fix('#navigation, .logo, #contenttop, #content, #contentbottom, #flowerbottom, body');

Upvotes: 0

Views: 111

Answers (2)

Pekka
Pekka

Reputation: 449425

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');

Upvotes: 0

PeterMmm
PeterMmm

Reputation: 24630

IE6 breaks for transparent PNG. Maybe try this one ...

Upvotes: 1

Related Questions