>> > 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