Hey guys
I’m coding a website for a client, and I can’t get my head around how to prevent the slideshow (which is 1500px wide) from causing the page (which is 1000px wide) to overflow.
I’ve set overflow-x:hidden on the body tag, which successfully hides the horizontal scrollbar. But when using two-finger horizontal scrolling I still get a black edge on the right hand side of the page. See the attached screenshot.
The slideshow itself looks like this:
<div id="slideShowWrapper">
<ul id="slideShow">
{exp:channel:entries channel="slideshow" dynamic="off" disable="member_data|pagination|trackbacks"}
<li>{slideshow_image}</li>
{/exp:channel:entries}
</ul>
</div>By the way, setting overflow-x:hidden on the html tag causes a whole load of weird errors, so that’s a no-go…