Question

I am using shadowbox to open different links on a website. For some reason, Firefox does not show the horizontal scrollbar. It works fine in all other browsers.

I have tried this with no luck :(

<a href="http://exmaple.com" rel="shadowbox;width=200;height=200;scrolling=yes">link</a>

I have also tried the following on the iframe page:

html {
     overflow: -moz-scrollbars-horizontal;
     overflow: scroll;
}

Anyone know whats going on?

Était-ce utile?

La solution

shadowbox.css line 9 contains:

overflow-x: hidden;

Which hides the horizontal scrollbar.

You could overrule this by adding !important:

body {
    overflow: scroll !important;
}

Autres conseils

Add this in your default.css file and try:

html, body {
    overflow: auto;
}
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top