2017-10-19 78 views
0

超级amatuer编码器试图创建一个完美的婚礼博客网站。我一直指向这个论坛的方向从这里https://productforums.google.com/forum/?utm_medium=email&utm_source=footer#!msg/blogger/XoinQAtTfOk/8Zw0SsX8AAAJBlogspot删除帖子上方的黑线

我已经删除了我的博客上的帖子/页面标题,但它仍然留下了一个短的水平黑线。有没有办法去除这个?

我用下面的HTML代码删除标题:

。员额H3 {显示:无重要;}

的网址https://chrisandruthgetweddytorumble.blogspot.com/对于想一探究竟的人。

谢谢!

回答

0

您可以检查页面以查找代码。例如,在Chrome中,如果右键单击并选择“检查”,代码将出现在右侧。当我选择那个镜头线时,我看到“:: before:”。所以,无论如何blogspot删除将解决您的问题。 enter image description here

0

如果你F12并选择水平部分,你会得到这样的:

enter image description here

您需要删除::before解决您的问题

0

你可能之前使用这个[即时“< / head >”tag]:

<style> 
.widget.FeaturedPost .featured-post-snippet::before { 
    content: ""; 
} 
.page .widget.FeaturedPost .post-header { 
    display: none !important; 
    height: 0 !important; 
    margin: 0 !important; 
} 
</style>