for noname:
to change the background color to grey. you have to follow following steps.
> goto Edit HTML section.
> scroll down the template till you find
body {
margin:0 10px;
font-family: Tahoma, Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #333333;
}
> just add this line inside the {}
background-color:#A7A7A7;
> now it would look like this
body {
margin:0 10px;
font-family: Tahoma, Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #333333;background-color:#A7A7A7;
}
↩ Reply