Alright guys! I'm making a site in css, its going good, except one thing... When a user goes to another page, such as the next page of games (it's a remake of my site in css). The whole damn thing refreshes, the whole page disapears and reloads. Background, header, everything. Any ideas what going on? Is there some option to make the image cache in CSS? Cheers
No sorry matey, i dont want to share yet All i can really say is that everything refreshes on this new site i've made on css, but on my old site (with tables), the background, the header do not refresh. I guess i'll have to look into it more man, cheers.
Were you using frames or something before? Browsers should cache all images if you are using CSS, unless you are using url('image') in your CSS? I think that if that is the case the browser will need to load and parse all CSS before downloading the image.
Actually, calling your images inside your stylesheet will still let the images be cached. When you <link> to the CSS file. If you @import it, then it won't be cached, because the browser will have to re-download the stylesheet each and every single time.
Sorry yeah I meant to say they'd be cached, but maybe not loaded immediately because the browser would need to parse the CSS first.