Sun, 2004-06-13 17:10
This one is baffeling me! In my css I have it to display a jpg, Mozilla always displays it but IE never does. I even tried it with a jpg that was small but it is never there in IE. Cleared all my cookies etc several times but the same always happens. Here is the css
#main {
margin: 0 0 0 16px;
padding: 166px 10px 10px 10px;
width: 358px;
height: auto;
border: 1px solid #696969;
background: #FFF url(mpls.jpg)no-repeat top left;
float: left;
Sun, 2004-06-13 17:17
#1
Mozilla displays, IE does not!
There should be space between url() and no-repeat. and don't forget to end the css rule.
Next, make sure it's referring to the correct location of the image.
If it doesn't fix it try separating it out a bit to find out where it my be going wrong:
#main { margin: 0 0 0 16px; padding: 166px 10px 10px 10px; width: 358px; height: auto; border: 1px solid #696969; background-color: #FFF; background: url(mpls.jpg); background-repeat: no-repeat; background-position: top left; float: left; }
Sun, 2004-06-13 21:54
#2
Mozilla displays, IE does not!
That did the trick thanks!