How do you change the backround of the page

3
Since its basically HTML, how do you change the backround to have a theme(picture) as a base.
asked
2 answers
4

You set it in your layout.css

BODY
{
    color: #484848;
    text-align: center;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    background: #FFF url(images/layout/bggg.png) repeat-x top;
}
answered
0

You set it in you layout.css

BODY { color: #484848; text-align: center; font-size: 12px; font-family: Arial, Helvetica, sans-serif; background: #FFF url(images/layout/bg.png) repeat-x top; }

answered