I'd humbly appreciate any help on this one.
I have a div with background: url("../images/description_bkgrnd.jpg") repeat; display: none;
Later this div is made visible with jQuery.
When the url looks like http://localhost/product-name-p35/ all is OK, but when it looks something
like http://localhost/product-name-p35/RU/ browser fails to load the image.
In firebug I see that it is trying to load http://localhost/product-name-p35/images/description_bkgrnd.jpg,
not http://localhost/images/description_bkgrnd.jpg/
what is to blame?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
|
|
This is a relative path. When you are in the directory One possible way to fix this is to reference your image with an absolute path:
Another possible way is to use
The Reference: http://www.ibdhost.com/help/path/ |
|||||||
|
|
.. means that you are going up one level so when you are at RU folder it will go to /product-name-p35 folder |
|||||||
|
|
