如何隐藏在标志标题

问题描述 投票:0回答:3

Add headers h1, h2, h3 (Contempo)是工作很好,但是当我把我的标志我dont't whant看我博客的标题文字。

blogger
3个回答
0
投票

从您的博客主页上,前往布局>页眉和选择而不是标题和描述的


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'/>

但我不知道它的权利,你怎么看这是很好的搜索引擎优化?

有两个代码

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

我改变了第二位。


0
投票

谢谢大家帮忙巴萨姆,我加入这个代码

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

现在一切都OK,谢谢你一次:)

© www.soinside.com 2019 - 2024. All rights reserved.