0

如何向我的 Wordpress 3.5.1 添加背景图像或颜色?
我的 Wordpress 主题在我的 Wordpress 仪表板的外观小部件中没有“背景”。

4

1 回答 1

2

Of course you can use multiple solutions for that. I will give 2 sollutions.

  1. In your file .css set the backround-color like this:

    .body{ background:#000000; }

  2. 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 回答