html - CSS image loading intermittently -
i can't provide info except (maybe 1 in every 25 runs) image call css not load properly. image there because if hover mouse on it shows in places.
the html:
<div class="body-top"> blah </div>
the css:
.body-top {background:url(../images/top.gif) no-repeat; height:55px; width: 970px; margin:0; padding:0;}
it running on visual studio's development server.
any ideas?
edit: hovering on image doesn't make appear, it's when hover on link on image
it's hard without seeing page, but.
can verify none of elements inside have background colour? try adding test things:
.body-top *{background:none !important;}
don't use final code, because !important flag stop background working elements inside .body-top
Comments
Post a Comment