Firefox not loading css images -


so, i've been coding site around week now, , in last few days i've hit problem driving me nuts. safari, opera, ie fine, in firefox background images refuse load on page. (it little embarassing too, i'm supposed web-designer , website! i've never encountered before...)

here's page: http://www.jimzip.com/sandbox/04/

here's example of of html in image doesn't load:

<section id="sect-example">  <img id="example-bar" src="images/example-bar.gif" /> <a id="an-example" href="images/website-example-01.jpg" rel="lightbox[site-examples]" alt="" /></a>  </section> 

and css:

      #sect-example {         display: block;         position: fixed;         top: 1800px;         height: 307px;         width: 1024px;     }          #an-example {             position: relative;             display: block;             width: 312px;             height: 285px;             left: 357px;             top: 0px;             background: url("http://www.jimzip.com/sandbox/04/images/may-i-see-an-example.jpg") no-repeat;             background-position: 0px 0px;             background-size: 312px 570px;         }             #an-example:hover {             background-position: 0px -285px;         }          #example-bar    {             position: relative;             left: 169px;             top: 140px;         }  

what i've figured out:

a normal refresh once brings stubborn images, 2 refreshes fixes more etc. it's they've loaded hidden until interact somehow.

it not firefox' settings. i've been clearing history/cache/info etc before loading page each time. i've taken trashing ff's preference file every time make sure.

i can't seem spot bug in firebug. when hover on 1 of phantom images, loads in firebug no problem.

if put images hard links html , style them there, show up, feel it's kind of necessary able use bg images... image rollover-link in middle of page (the "can see examples?" image).

it could javascript, have lot of them running on page. problem non-existent in safari, opera, ie, have assume scripts fine, , firefox thing.

with styles turned off images still don't load ... until hit 'refresh' surprise surprise, come.

another possibility can think of page heavy. doesn't seem right: see safari et al. i've done heap of image crunching , have tried make page small possible.

any here very, appreciated. need finished!

thanks in advance!


Comments

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

linux - Does gcc have any options to add version info in ELF binary file? -

java - Are there any classes that implement javax.persistence.Parameter<T>? -