IE sometimes doesn't display background images

Associate
Joined
26 Jul 2004
Posts
1,074
Location
Birmingham
Hi there, I've recently put together a website for a friend's business, using background images to apply rounded corners. All was fine and it looked ok to me in IE, bar an interesting problem - when I navigate through the site, some of the background images would go missing.

I only tested it on a public computer the other day to confirm that it wasn't just happening to my computer.

I can't really think of a logical reason as to why this is happening, and I'm wondering if anyone has any suggestions?

http://linkuplanguages.co.uk

Thank you in advance.

P.S. I am aware that the css's not very efficient, and my excuse is the fact that I've always been a minimalist fluid layout person ;P
 
Not the best solution in the world but...

XHTML Web Translation Page
Code:
<div id="bottomborder">	   
</div>
<!--footer-->
<div id="footer">
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Tel: +44 (0)121 442 6835</p>
 </div>
</div><!--all-->
</body>
</html>

CSS
Code:
#bottomborder
{
	background-image: url(../images/corners/blue_home_bottom.gif);
	background-repeat:no-repeat;
	background-position:bottom;
	height:10px;
	width:760px;
	padding:0;
	margin:0;
}

#footer p{padding:0;}
I've added a new div called bottomborer and moved the original footer attributes into this as well as adding a few more. In my little mock up it works, I don't know if you can apply this to all your pages because your CSS is a bit messy, making it hard to understand. Hope it helps. :)
 
Back
Top Bottom