如何向我的 Wordpress 3.5.1 添加背景图像或颜色?
我的 Wordpress 主题在我的 Wordpress 仪表板的外观小部件中没有“背景”。
问问题
44 次
1 回答
2
Of course you can use multiple solutions for that. I will give 2 sollutions.
In your file .css set the backround-color like this:
.body{ background:#000000; }
You can use a class to handle that:
.backround { position:absolute; backround:#000000;//or, instead #000000; use url(path_to_image); width: 100%; z-index: 999; min-height: 30px; left:0; padding-top:10px; }
This is it!
于 2013-04-26T11:59:12.377 回答