Pergunta

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?

Foi útil?

Solução

shadowbox.css line 9 contains:

overflow-x: hidden;

Which hides the horizontal scrollbar.

You could overrule this by adding !important:

body {
    overflow: scroll !important;
}

Outras dicas

Add this in your default.css file and try:

html, body {
    overflow: auto;
}
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top