WP站点上的白色条带

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

你帮我删除了几个像素的白色条带,因为下面会出现一个滚动条?

非常感谢,对不起我的英语。请指正!

Link to the site

Sreenshort of this problem

html css wordpress frontend
2个回答
0
投票

您的Breadcrumb Style几乎没有CSS问题。请将以下代码和过去复制到定制程序 - >其他CSS:

.breadcrumbs {
    width: 100% !important; 
 }

希望它能解决你的问题。


0
投票

在你的CSS你有

html.html-has-lrm
{
  overflow: auto !important;
}

改变为

html.html-has-lrm 
{
 overflow: hidden !important;
}

你的白色条纹将不再可见

因为我可以看到你正在使用缓存插件所以不要忘记在进行更改后清除缓存。

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