如何在Wordpress中更改背景颜色

时间:2014-08-21 18:22:57

标签: css wordpress

我想更改文本区域的背景颜色。我正在使用Minamaze主题。

尝试更改textarea的背景,但它没有帮助..尝试清除缓存

需要一些指导..

网站是quantgreeks.com,我想更改文本背后的白色背景。

1 个答案:

答案 0 :(得分:2)

在你的样式表中找到:

#content {
  clear:both;
  margin:0;
  padding:20px 10px;
}

并为其添加背景颜色。例如:

#content {
  background-color:#000000;
  clear:both;
  margin:0;
  padding:20px 10px;
}