
Originally Posted by
ralph.m
I did actually do that, but didn't see the effect, although I have seen that before. I think the reason is that .slides_container has overflow: hidden set on it only through JS, which takes a second or two to kick in. The solution is to add this directly to your style sheet:
Code:
.slides_container {
overflow: hidden;
}
See if that helps.

Thank you so much,
This did help but I also added the following code to make it 100% perfect 
Code:
.slides_container {
width: 622px;
height: 330px;
}
.slide-group {
position: relative;
}
Now even if you disable JS it still appears as it should (just without the navigation buttons).
Thanks again for your help Ralph.
Bookmarks