Mozilla VPN is currently experiencing an outage. Our team is actively working to resolve the issue. Please check the status page for real-time updates. Thank you for your patience.

为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Website's slider not accurately showing

  • 6 个回答
  • 3 人有此问题
  • 1 次查看
  • 最后回复者为 hsmith

more options

On my website bxcell.com the website's homepage slider is not viewing accurately. It is suppose to be a full page slider. It works in every other browser except Mozilla. It most recently occurred with the updated version to 42.00. I tried disabling all extensions/plugins and of course clearing all cache. The error is still there.

On my website bxcell.com the website's homepage slider is not viewing accurately. It is suppose to be a full page slider. It works in every other browser except Mozilla. It most recently occurred with the updated version to 42.00. I tried disabling all extensions/plugins and of course clearing all cache. The error is still there.

被采纳的解决方案

Hmm, the style sheet http://bxcell.com/wp-content/themes/Divi/includes/builder/styles/frontend-builder-style.css?ver=2.5.3 contains this rule:

.et_pb_slider { position: relative; overflow: hidden; }

If you disable the overflow:hidden rule on that div, the slider expands to full width. But... that shouldn't be necessary. I can't figure out why that div isn't expanding to full width by default. Perhaps a question for the theme author?

定位到答案原位置 👍 1

所有回复 (6)

more options

I can see the slider and it definitely works, but the layout of the page is messed up in a small viewport. Opera renders it fine.

There's probably something in the page's source or CSS code that Firefox in particular doesn't like. Not my strong suit I'm afraid, but I'll give it a peek just in case.

more options

Whatever it is, it is in the dynamic rules for the intermediate mode.

The smallest viewport mode renders correctly, and so does the biggest, but the intermediate mode renders wrong. It's like the text columns can't squeeze enough and get pushed under the slideshow, which is comically stretched - could be a minimum width rule being interpreted more literally or liberally in different browsers.

Cutting the slideshow node from the code makes the page render correctly, so I would start troubleshooting there.

PS. I just realised the slideshow is wrong in the largest mode as well, so it's the slideshow node's code or code related to it that is making it position wrong in Firefox. I'm no expert in page design, I'm afraid, so I don't know how to fix it.

由Phoxuponyou于修改

more options

The slider is a built in function within my divi theme. It works fine in all other browsers including the last version of mozilla. Do you know of any CSS to possible make this view accurately?

more options

I can't find the value that would fix things in Firefox; it'll be up to people more experienced with this theme and/or page code in general.

more options

选择的解决方案

Hmm, the style sheet http://bxcell.com/wp-content/themes/Divi/includes/builder/styles/frontend-builder-style.css?ver=2.5.3 contains this rule:

.et_pb_slider { position: relative; overflow: hidden; }

If you disable the overflow:hidden rule on that div, the slider expands to full width. But... that shouldn't be necessary. I can't figure out why that div isn't expanding to full width by default. Perhaps a question for the theme author?

more options

Thank you so much! This worked! Now to put the file in my child theme...Thanks again!