英文:
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;
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论