搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

Website's slider not accurately showing

  • 6 回覆
  • 3 有這個問題
  • 189 次檢視
  • 最近回覆由 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!