On Sunday, September 18, 2011 1:15:44 AM UTC-4, JavierQQ wrote:
>
> background:url(images/menu_bt.gif)
> I don't know how it works but I use ('../ ') with the dots and the
> slash
The ../ refers to the parent folder of the current folder. So, if the
current folder is /static/css, then ../ refers to static/. If your css is in
/static/css and your images are in /static/images, then to refer to an image
from a css file, you would do ../images/image_file, which is equivalent to
/full/path/to/static/images/image_file.
Anthony