On Tue, Sep 22, 2009 at 2:43 PM, stelg wrote: > > Seems that the total URl is not constructured properly (absolute > reference) url(images/bodyBg.jpg) > Did you try this url(../images/bodyBg.jpg)? (add ../ )
url(images/bodyBg.jpg) is actually relative to the stylesheet location. an absolute reference would start with a slash: url(/images/bodyBg.jpg). either one is ok, you just need to point to the correct file. -- rodrigo --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
