Wordpress主题“二十五”背景

时间:2017-04-07 12:17:45

标签: css wordpress background

我正在为网站使用Wordpress“二十五”主题。

我想更改侧边栏左侧的背景颜色,但我找不到。 我可以更改正文,页面,侧边栏等的背景,但不能更改侧边栏左侧区域(具有相同颜色)。

1 个答案:

答案 0 :(得分:1)

步骤1-转到主题的管理员。外观>如screeshot所示进行自定义。 enter image description here

步骤2-转到其他Css标签 -

enter image description here

步骤3 - 在此标签中添加css,如下所示。根据需要提供自己的颜色。

body:before{     background-color: yellow;}/* Css for left part only*/
.sidebar{background-color: blue;}/* Css for the sidebar*/

enter image description here

  

注意:您必须同时为左侧部分和侧边栏指定两种颜色,然后才能正常使用。