我一直在努力改变我的新博客的空白背景,我试图以简单的方式去做,但是,我无法做到。我以为我会尝试更难的方法,我下面的代码,我不知道如何将其整合到我的博客中。
<Group description="Body">
<Variable name="body.background.color" description="Body background color" type="color" default="#f7f7f7" value="#f6f6f6"/>
<Variable name="body.background" description="Background" type="background" color="#f7f7f7" default="$(color) none repeat scroll top left" value="$(color) none repeat scroll top left"/>
<Variable name="body.text.font" description="Font" type="font" default="$(generalFont)" value="400 16px Ubuntu, sans-serif"/>
<Variable name="body.text.color" description="Color" type="color" default="#000000" value="#000000"/>
<Variable name="body.link.color" description="Link color" type="color" default="$(keycolor)" value="#729c0b"/>
<Variable name="body.link.visited.color" description="Visited Link color" type="color" default="$(body.link.color)" value="#729c0b"/>
<Variable name="body.link.hover.color" description="Link hover color" type="color" default="$(body.link.color)" value="#729c0b"/>
<Variable name="body.button.font" description="Button font" type="font" default="$(textButtonFont)" value="500 12px Ubuntu, sans-serif"/>
<Variable name="body.button.color" description="Button color" type="color" default="$(keycolor)" value="#729c0b"/>
</Group>
答案 0 :(得分:0)
您是否尝试将color
中的type="background" color="#f7f7f7"
更改为另一个hex
值?或者您想将背景颜色更改为背景图像?
答案 1 :(得分:0)
在第三行(正文背景)上有一个color="#f7f7f7"
。随心所欲地改变它
答案 2 :(得分:0)
按如下方式更改第3行 -
<Variable default="$(color) url(IMAGE_URL) none repeat scroll top left" value="$(color) url(IMAGE_URL) none repeat scroll top left" name="body.background" description="Background" type="background" color="#f7f7f7" />
将IMAGE_URL
替换为您想要作为背景的图片的实际网址