Hi, I've been searching for hours and still can't get css background images to display. Live test site here: http://test.danwilliam.com.au/hosting/ Thanks
you have many different url's to your background images, in the css file. there is urls like: background: url(http://test.danwilliam.com.au/blabla/... and like: background: url(http://danwilliam.com.au/blabla... you only need the short one, like the logo. The logo is displaying fine in IE right? So the url to that background image is like: background: url(img/logo-1.jpg) no-repeat 50% 0; This last one is the right format, if you use that on all bg images you'll see them in IE aswell. By the way, you should check your javascripts, they flag errors in both IE and firefox
Are you talking about the 'add to cart' button? If yes.. I see that you have declared input[type="submit"] in you CSS, that doesn't work in lower versions of IE. Check the compatibility of CSS selectors in different browsers here.. http://www.quirksmode.org/css/contents.html
thanks for your fast reply. good spot with the urls. I think the images were in both places, but yes only the logo was working. I fixed the urls and fixed the javascripts and it works! thanks!