Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Slideshow not working in toggle tabs Re: Slideshow not working in toggle tabs

#127727
geoffreyrose
Member

Hey Aaron,

Your problem might be the fact your using max-width: 100%.
I have only had problems declaring max-width: 100%. Instead try doing something like this.

.class {
max-width: 960px; /** Put in whatever is the largest width it wil ever need to be **/
width: 100%;
}