This content has been marked as final.
Show 3 replies
-
1. Re: Why does my website scroll across?
Ryan Thomas Oct 10, 2014 11:48 AM (in response to BrightSparks)The problem is your "Products" dropdown width. Anyways if you add overflow:hidden, it will fix the problem.
Locate the CSS file "foundation.css" and change:
line 2977
.top-bar-section .dropdown {
position: absolute;
left: 100%;
top: 0;
visibility: hidden;
z-index: 999;
overflow: hidden;
}
to
.top-bar-section .dropdown {
position: absolute;
left: 100%;
top: 0;
visibility: hidden;
z-index: 999;
overflow: hidden;
}
-Ryan
-
2. Re: Why does my website scroll across?
BrightSparks Oct 12, 2014 7:54 AM (in response to Ryan Thomas)Thanks so much Ryan. Also looks like I needed to change it in the styles.css as well.
Again thank you so much.
-
3. Re: Why does my website scroll across?
Ryan Thomas Oct 13, 2014 4:30 PM (in response to BrightSparks)Happy to help!

