Question

I can't quite get body backround color to show up.

@import "bourbon/bourbon";
@import "neat/neat";
body {background: red;}

Im also using the Mustache framework so my html is:

<body id="{{namespace}}" style="margin:0;">

<div id="wrapper">  

<%> commons/header %>

    <%#home? %>
        <%> pages/home %>
    <%/home? %>

    <%#sobre? %>
        <%> pages/sobre %>
    <%/sobre? %>

    <%#galeria? %>
        <%> pages/galeria %>
    <%/galeria? %>

    <%#contato? %>
    <%> pages/contato %>
    <%/contato? %>

    <%> commons/footer %>

</div>

</body>

I tried many variations already. It seems so simple, but it's driving me crazy. Any ideas?

Was it helpful?

Solution

My Answer is that this turned out to be a very specific problem related to my custom designed template system.

So I set the body color elsewhere to make things workout.

I believe this wont help anyone out there, but I only realised it was so specific after this question.

Thanks

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top