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

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

Extra White Space on WordPress website To the right

问题

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

以下是网页链接:site url

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

  1. overflow-x: hidden;
  2. }
英文:

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

tried

  1. html, body {
  2. overflow-x: hidden;
  3. }

but not working

答案1

得分: 1

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

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

Try adding this to your CSS:

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

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:

确定