1

我需要如何在博客文章标题后面插入图片?我从这个 网站得到了一些帮助,但没有成功。

</Group>

   <Group description="Post Title" selector="h3.post-title, h4, h3.post-title a">
     <Variable name="post.title.font" description="Font" type="font"
         default="normal bold 22px Arial, Tahoma, Helvetica, FreeSans, sans-serif" value="normal bold 20px 'Trebuchet MS', Trebuchet, sans-serif"/>
     <Variable name="post.title.text.color" description="Text Color" type="color" default="$(body.text.color)" value="#01689c"/>
   </Group>


    h3.post-title, h4 {
  font: $(post.title.font);
  color: $(post.title.text.color);
}

h3.post-title a {
  font: $(post.title.font);
  color: $(post.title.text.color);
}

h3.post-title a:hover {
  color: $(link.hover.color);
  text-decoration: underline;
}
4

1 回答 1

0

尝试添加:

h3.post-title {
    background-image: url('Background_image_url_here');
    background-repeat: no-repeat;
}
于 2013-07-19T06:17:00.587 回答