Hey, My background image is loading in IE but not in firefox any suggestions? #contentarea{ text-align: left; background: url(images/contentarea.jpg) repeat-x #fff; border-left: 1px solid #C6D4DF; padding: 6px 6px 0 6px; border-right: 1px solid #C6D4DF; } PHP:
like try using a different image? I dont think that will help! It loads on the page but does not stretch all the way to the bottom like IE does
I do find that firefox will on occasions omit background images (seemingly randomly) as shift + refresh will often then make them load. Dont know if this is the issue you are facing or if anyone else can shed any light on why this is too.
Try using quotes around the image path. background: url("images/contentarea.jpg") repeat-x #fff; Code (markup):
try separating them into their category: background-image: url(images/contentarea.jpg); background-repeat: repeat-x; background-color: #ffffff; background-position: /*where you want your image to be positioned first*/ background-attachment: /*if you want it to move when you scroll or not*/ Code (markup):