如何在博客标题后面插入图片

How to insert image behind blog post title

本文关键字:插入 标题      更新时间:2023-09-26

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

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

尝试添加:

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