如何在博客文章标题后插入图像

时间:2013-07-19 06:09:44

标签: javascript html post blogs blogger

我需要如何在博客帖子标题后插入图片?我得到了site的一些帮助,但没有成功。

</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;
}

1 个答案:

答案 0 :(得分:0)

尝试添加:

h3.post-title {
    background-image: url('Background_image_url_here');
    background-repeat: no-repeat;
}