Hi @techguyonanisland
The top slider is Boxed now and that type doesn’t add overflow-x: hidden
to anything, but there’s another Full Width slider (#4) on your page down below that still have the Overflow-X setting on body
. Can you try setting the Overflow-X at that slider to none as well?
Edit:
I’m not sure I understand the reason (seems like a weird glitch for me) but it seems that the overflow-x: hidden
s conflict with the icons in the footer menu. Removing everything else but the footer
tag from the Inspector makes a scrollbar appear in the footer:
View post on imgur.com
And it seems to happen because there’s a CSS that targets the menu item links:
.bottom-bar-menu .menu li a {
color: #acaeaf;
display: block;
font-size: 11.99996px;
font-size: 0.85714rem;
height: 50px;
line-height: 50px;
text-decoration: none;
white-space: nowrap;
}
if I uncheck either the height
or line-height
properties, the problem gets fixed. Unchecking the height
makes the footer
element have 56px height instead of the 50.2px when the height
is enabled.
So based on this the footer would need a bigger height than it currently has and for some reason it seems like the double overflow-x:hidden
s make the footer “want” to display the cropped parts. Weird.
-
This reply was modified 2 years, 7 months ago by Ramona.