CSS:如何更改背景颜色

时间:2015-07-03 14:37:25

标签: html css tumblr tumblr-themes

以下是代码:LABOUM
这是Tumblr帐户:LABOUM2

我想将背景颜色从#FFFFFF更改为#FFCFEA,但我不知道要更改哪个代码。请帮忙!先感谢您。 ^ _ ^

1 个答案:

答案 0 :(得分:1)

您需要更改此

body {
  color: #000000;
  background-color: #FFFFFF;
  font-style: normal;
  text-align: justify;
  font-family: calibri;
  font-size: 11px;
  text-decoration: none;
  line-height: 110%;
}

到此

body {
  color: #000000;
  background-color: #FFCFEA;
  font-style: normal;
  text-align: justify;
  font-family: calibri;
  font-size: 11px;
  text-decoration: none;
  line-height: 110%;
}

在您的模板文件上。该行应位于两个标记内,例如<style type="text/css"></style>

相关问题