Log in

View Full Version : Resolved Page working in Firefox but not IE :/



ModernRevolutions
01-13-2009, 11:26 PM
Im helping a friend with her website here (heyluna.vivid-avenue.net) but its not showing up in IE. Why? Its working perfectly fine in Mozilla. Can anyone help? I need it asap

ModernRevolutions
01-13-2009, 11:33 PM
wow i got it that was fast hahaha. but how do i make a background image repeat downward only for IE?

Snookerman
01-14-2009, 08:16 AM
You can use conditional comments:

<!--[if IE]>
<style type="text/css">
#foo {
background-repeat: repeat-y;
}
</style>
<![endif]-->

Good luck!