On Mon, Mar 9, 2009 at 8:43 PM, Serdar T. <zstumgo...@gmail.com> wrote:

>
> OK. So for posterity's sake, I wanted to note that I solved this
> problem, and it was completely my own embarrassingly stupid oversight
> (is there a Jargon acronym for telling yourself to read your own
> source more closely?).
>
> The problem was not the project layout or Django code, but the link in
> the html page to the stylesheet.
>
> This link....
>           <link rel="stylesheet/css" href="/static/css/base_test.css"
> type="text/css" />
> ...had an incorrect attribute:
>         rel="stylesheet/css" should be just rel="stylesheet"
>
> The correct link:
>        <link rel="stylesheet" href="/static/css/base_test.css"
> type="text/css" />
>
> I must have looked at that link dozens of times until I noticed it.
> Apologies for cluttering the list with my brainlapse.
>
> >
>
FWIW I believe the appropriate ackrnym is PEBCAC: Problem Exists Between
Computer and Chair :P

Alex

-- 
"I disapprove of what you say, but I will defend to the death your right to
say it." --Voltaire
"The people's good is the highest law."--Cicero

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