Click to See Complete Forum and Search --> : Background images in Firefox


Terrorke
05-08-2008, 03:05 AM
Hi,

Is there a way to disable a background image in FF but it has to show in IE.
I believe there is some sort of CSS hack for it.

Does anybody have a clue?

Thanx in advance.

Grtz

Centauri
05-08-2008, 05:49 AM
Ususual request. Is the background to apply to any version of IE or just version 6 and under ?

Terrorke
05-09-2008, 01:23 AM
For all the IE versions. But not for FF

Any ideas?

Centauri
05-09-2008, 01:55 AM
You could feed the image to IE only through a conditional comment in the <head> section of the page :
<!--[if IE]>
<style type="text/css">
#elementid {
background-image: url(image.jpg);
}
</style>
<![endif]-->