You might post your settings.py as a help to other newbies

On Apr 15, 7:21 pm, Anthony <alantho...@gmail.com> 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, 4:06 pm, Wayne Koorts <wkoo...@gmail.com> wrote:
>
> > >> > 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):
>
> > <body>
> >     <img src="/styles/Picture.png" />
> >     <p class="baseline">Test paragraph.</p>
> > </body>
>
> > p.baseline {
> >     color: green;
> >     border: solid red;
>
> > }
>
> > 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);".
>
> > Regards,
> > Wayne
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to