如何在徽标下隐藏标题

时间:2019-01-29 15:58:37

标签: blogger

Add headers h1, h2, h3 (Contempo) 效果很好,但是当我放上徽标时,我不想看到我博客的标题文本。

3 个答案:

答案 0 :(得分:0)

从博客控制台中,转到布局> 标题,然后选择代替标题和说明

答案 1 :(得分:0)

Blogger主题为Contempo,我可以通过替换以下代码来隐藏标题:

<b:class cond='data:this.imagePlacement == &quot;REPLACE&quot;' name='replaced'/>

与此:

<b:class cond='data:this.imagePlacement == &quot;REPLACE&quot;' name='hidden'/>

但是我不确定这是正确的,对SEO有什么好处,您怎么看?

有两个代码

<b:class cond='data:this.imagePlacement == &quot;REPLACE&quot;' name='replaced'/>

我要换第二个。

答案 2 :(得分:0)

感谢您的帮助Bassam,我已添加此代码

.centered-top-container .Header .replaced h2, .centered-top-placeholder .Header .replaced h2 {
    display:none;
}
.centered-top-container.sticky .Header .replaced h2 {
    display:block;
}

在此之下

.centered-top-container .Header .replaced h1, .centered-top-placeholder .Header .replaced h1 {
    display:none;
 }
 .centered-top-container.sticky .Header .replaced h1 {
    display:block;
 }

现在一切都好,谢谢您再一次:)