Log in

View Full Version : Resolved Repeat Y problem in IE



ModernRevolutions
01-17-2009, 11:03 AM
Ok I am currently using the code:
body {
text-align:right;
margin: 0px;
background:url(http://www.modernrevolutions.vivid-avenue.net/websitelayouts/kbell/bellbar.png)repeat-y;
background-position:top left;
background-color:6491b4;
text-align: justify;
letter-spacing:0px;
font-family:georgia;
font-size:11px;} to make the bar repeat down the page. It works perfectly fine in Mozilla however if you open the page in IE it doesn't work. :/ Here is a link (http://www.modernrevolutions.vivid-avenue.net/website%20layouts/kbell/index.php).

I have also tried:
body {
text-align:right;
margin: 0px;
background:url(http://www.modernrevolutions.vivid-avenue.net/websitelayouts/kbell/bellbar.png)repeat-y;
background-repeat:repeat y;
background-position:top left;
background-color:6491b4;
text-align: justify;
letter-spacing:0px;
font-family:georgia;
font-size:11px;}

Snookerman
01-17-2009, 11:30 AM
You have several errors in your css code, for example missing a number symbol (#) in front of the color. Fix all errors and you should be fine, you can check them in the w3 css validator:
http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.modernrevolutions.vivid-avenue.net%2Fwebsite%2520layouts%2Fkbell%2Fstyle.css&profile=css21&usermedium=all&warning=1&lang=en (http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.modernrevolutions.vivid-avenue.net%2Fwebsite%2520layouts%2Fkbell%2Fstyle.css&profile=css21&usermedium=all&warning=1&lang=en)

Good luck!