如何更改wordpress网站主题的背景颜色

时间:2013-11-07 05:33:10

标签: css wordpress wordpress-theming

这是我的css文件的一部分

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
background: none repeat scroll 0 0 transparent;
border: 0 none;
font-size: 100%;
margin: 0;
outline: 0 none;
padding: 0;
vertical-align: baseline;

}
body {
font-family: 'Noto Sans', sans-serif;
font-size:13px;

background:url(./images/bodtbg.jpg)  left top repeat-x ;
margin:0;
padding:0;

}
   .leftWrap {
float:left;
width:340px;
box-shadow: 1px 1px 5px #888888;
min-height:500px;
background:#f5f5f5;
padding:49px 0 0 0;
    margin-bottom:20px;
}

目前网站的主体是白色的。我需要将其更改为天蓝色或一些相关的浅色调。我该怎么改变?

2 个答案:

答案 0 :(得分:1)

body{ 
    background:#000 !important;
}

答案 1 :(得分:0)

body    {    background:cyan;    }
相关问题