Background image path not working in firefox
I'm running into a problem with background image of an <li> loading in firefox. my original code was: background: #bdcad7 url(../images/navbg.png) repeat-x; which works well in chrome and IE but not in FF. background: #bdcad7 url(images/navbg.png) repeat-x; also works in IE and chrome but not in FF The only way to get it working in FF is if I include the next directory level background: #bdcad7 url(/includes/images/navbg.png) repeat-x; but that doesn't work in other browsers. I've tried all variations I can think of ./ , ../ , include quotes, double quotes, use background-image etc and can't