Re: Serving Static Files - Pics work, but CSS doesn't

2009-04-17 Thread Anthony
Sure thing: === # Django settings for my project. DEBUG = True TEMPLATE_DEBUG = DEBUG ADMINS = ( # ('Your Name', 'your_em...@domain.com'), ) MANAGERS = ADMINS DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. DATABASE_NAME

Re: Serving Static Files - Pics work, but CSS doesn't

2009-04-16 Thread Wayne Koorts
>> Also just another tip: it is a good idea to not use named colour >> values ("green" / "red" etc.) as each CSS rendering engine might >> interpret it differently.  For green you could use: "color: rgb(0, >> 255, 0);" and for red you could use: "color: rgb(255, 0, 0);". > > That is incorrect, the

Re: Serving Static Files - Pics work, but CSS doesn't

2009-04-16 Thread Les
You might post your settings.py as a help to other newbies On Apr 15, 7:21 pm, Anthony wrote: > Thanks. > > I was just trying to get the stylesheet to show up.  I have a full CSS > template I got from somewhere else that I'll be using now that it's > being successfully pulled in. > > On Apr 15,

Re: Serving Static Files - Pics work, but CSS doesn't

2009-04-16 Thread Tom Evans
On Thu, 2009-04-16 at 11:06 +1200, Wayne Koorts wrote: > Also just another tip: it is a good idea to not use named colour > values ("green" / "red" etc.) as each CSS rendering engine might > interpret it differently. For green you could use: "color: rgb(0, > 255, 0);" and for red you could use: "

Re: Serving Static Files - Pics work, but CSS doesn't

2009-04-15 Thread Anthony
Thanks. I was just trying to get the stylesheet to show up. I have a full CSS template I got from somewhere else that I'll be using now that it's being successfully pulled in. On Apr 15, 4:06 pm, Wayne Koorts wrote: > >> > The picture shows up, but the text doesn't turn green like I think it >

Re: Serving Static Files - Pics work, but CSS doesn't

2009-04-15 Thread Wayne Koorts
>> > The picture shows up, but the text doesn't turn green like I think it >> > should. See if it helps changing your code and CSS as follows (basically making it XHTML compliant - not sure what you're aiming at specifically with what you've done): Test paragraph. p.baseline { co

Re: Serving Static Files - Pics work, but CSS doesn't

2009-04-15 Thread Anthony
That was it! Thanks, I thought "baseline" was just a variable name I could use. I appreciate your time on this. On Apr 15, 4:01 pm, Alex Gaynor wrote: > On Wed, Apr 15, 2009 at 6:59 PM, Anthony wrote: > > > Yes, they are right next to each other in the same folder. > > > On Apr 15, 3:55 pm,

Re: Serving Static Files - Pics work, but CSS doesn't

2009-04-15 Thread Alex Gaynor
On Wed, Apr 15, 2009 at 6:59 PM, Anthony wrote: > > Yes, they are right next to each other in the same folder. > > On Apr 15, 3:55 pm, Alex Gaynor wrote: > > On Wed, Apr 15, 2009 at 6:50 PM, Anthony wrote: > > > > > Hello, > > > > > I'm pretty new to CSS as well as Django, so I'm sure I'm doing

Re: Serving Static Files - Pics work, but CSS doesn't

2009-04-15 Thread Anthony
Yes, they are right next to each other in the same folder. On Apr 15, 3:55 pm, Alex Gaynor wrote: > On Wed, Apr 15, 2009 at 6:50 PM, Anthony wrote: > > > Hello, > > > I'm pretty new to CSS as well as Django, so I'm sure I'm doing > > something simple wrong.  Anyway, I'm able to serve up a test

Re: Serving Static Files - Pics work, but CSS doesn't

2009-04-15 Thread Alex Gaynor
On Wed, Apr 15, 2009 at 6:50 PM, Anthony wrote: > > Hello, > > I'm pretty new to CSS as well as Django, so I'm sure I'm doing > something simple wrong. Anyway, I'm able to serve up a test pic that > I placed in the media folder, but I can't get the html to use the CSS > template. > > > >

Serving Static Files - Pics work, but CSS doesn't

2009-04-15 Thread Anthony
Hello, I'm pretty new to CSS as well as Django, so I'm sure I'm doing something simple wrong. Anyway, I'm able to serve up a test pic that I placed in the media folder, but I can't get the html to use the CSS template. My Site Test paragraph. My CSS file