I think you'll be OK if you put the folders referred to in your CSS URLs
inside the /static/css folder. For example, in your example below, it looks
like there is an 'images' folder with a 1.jpg file in it, so you'd need:
/yourapp/static/css/images/1.jpg
Otherwise, yes, I suppose you'd have to change the URLs in your CSS file to
point to wherever those resources are stored.
Anthony
On Wednesday, August 3, 2011 5:51:56 PM UTC-4, Web2Py Freak wrote:
> do i have to change the urls inside the css file
> thay are all like :
>
> .class{
>
> background: #543 url(images/1.jpg);
>
> }