Jump to content

[SOLVED] Display Problem With Home Slider in Firefox


Recommended Posts

Problem seems to be in the

     <div class="bx_window" style="position:relative; overflow:hidden; width:982px;">

 

The overflow: hidden; makes Firefox react strange on the menu above (which has a float: right; defined), as the div has no float defined;

 

 

So, to fix, add a float:

 

in modules/homeslider/bx_styles (line 8)

 
.bx-window {
    margin-bottom: 10px;    // <-- reduce from 20px to 10px, to make gap not too big
    float: left;            // <-- add this
}
 
 
Hope this helps,
pascal.
Link to comment
Share on other sites

  On 10/11/2014 at 4:54 PM, PascalVG said:

 

Problem seems to be in the

     <div class="bx_window" style="position:relative; overflow:hidden; width:982px;">

 

The overflow: hidden; makes Firefox react strange on the menu above (which has a float: right; defined), as the div has no float defined;

 

 

So, to fix, add a float:

 

in modules/homeslider/bx_styles (line 8)

 
.bx-window {
    margin-bottom: 10px;    // <-- reduce from 20px to 10px, to make gap not too big
    float: left;            // <-- add this
}
 
 
Hope this helps,
pascal.

 

Thank you. :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...