在WordPress网站右侧出现额外的空白。

huangapple go评论58阅读模式
英文:

Extra White Space on WordPress website To the right

问题

在切换到 Elementor 特定页面的 RTL(从右到左)模式时,WordPress 网站右侧出现了白色空白。

以下是网页链接:site url

已尝试以下代码,但未生效:

    overflow-x: hidden;
}
英文:

White Space on WordPress website to the right when switching to rtl in elementor specific pages
Here is webpage :
site url

tried

html,  body {
    overflow-x: hidden;
}

but not working

答案1

得分: 1

尝试将以下内容添加到您的CSS中:

.rtl .elementor-top-section {
    left: 0 !important;
    width: auto !important;
}
英文:

Try adding this to your CSS:

.rtl .elementor-top-section {
    left: 0 !important;
    width: auto !important;
}

huangapple
  • 本文由 发表于 2023年2月16日 07:19:31
  • 转载请务必保留本文链接:https://go.coder-hub.com/75466323.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定