Nick20000 Posted October 11, 2014 Share Posted October 11, 2014 Hi. When I view my website in chrome is is displaying perfect, but when I open Firefox the home slider display is wrong. The slider is overlapping my top menu and the bottom of the slider there is a larger white space that is too much. How can this be fixed? Added a picture. http://www.shopmost.co.uk thank you. Link to comment Share on other sites More sharing options...
PascalVG Posted October 11, 2014 Share Posted October 11, 2014 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 More sharing options...
Nick20000 Posted October 11, 2014 Author Share Posted October 11, 2014 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 More sharing options...
PascalVG Posted October 11, 2014 Share Posted October 11, 2014 Glad it's solved :-) I'll mark the topic as solved, Happy selling, pascal Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now