Re: Python Stripped CSS Background Image Calls

2006-07-25 Thread Bruno Desthuilliers
JenAsh wrote: > Thanks Marc, > > Yes, there is a web framework, basically the CSS is used as the layout > wrapper of the Python script. It is a include call within the Python > script. > Then first post to this framework's mailing list, or to the author. FWIW, there are few chances you get any us

Re: Python Stripped CSS Background Image Calls

2006-07-25 Thread JenAsh
Thanks Marc, Yes, there is a web framework, basically the CSS is used as the layout wrapper of the Python script. It is a include call within the Python script. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Stripped CSS Background Image Calls

2006-07-24 Thread Marc 'BlackJack' Rintsch
In <[EMAIL PROTECTED]>, JenAsh wrote: > In my python file I have several css calls--they all works except for > the background image CSS call. > > .mystyle { background-image: > url(http://www.mysite.com/images/background.gif); } > > When I try to view it in the browser the code is somehow strip

Python Stripped CSS Background Image Calls

2006-07-24 Thread JenAsh
In my python file I have several css calls--they all works except for the background image CSS call. .mystyle { background-image: url(http://www.mysite.com/images/background.gif); } When I try to view it in the browser the code is somehow stripped. I only get the following: .mystyle { } How can