concrete 5.7 image slider issues
PermalinkFirst off good afternoon, hope to learn a lot from you guys. To get to the point, I have a horizontal image slider in my website template I am adding photos to. For whatever reason the image slider keeps cropping photos from the bottom, it looks like the photos are cut about halfway down when I save the changes. Please advise any possible solutions, I already tried fixing the aspect ratios in Systems & Settings and also resizing the pics but none of that worked. Thanks in advance for all replies.

Don't forget to clear your cache to see the changes. I'm new to Concrete5 myself but Firebug says the css entry is located inhttp://discountthriftstore.com/application/files/cache/css/elementa... (line 1) and generally speaking, having 'cache' in the path means it's cached. You can turn off caching until you are done developing but someone with more experience than I with C5 will have to tell you how, though I think I saw instructions on how to do it in the documentation on themeing.
For the type of and size of images you are using, I recommend trying a different image slider or edit the css to suit your site.
I saw Simple Slider is responsive and free.
The images are being cut in half because the .rslides class is set to "overflow: hidden;". Any part of the image that overflows will be hidden.
.rslides { position: relative; list-style: none; overflow: hidden; width: 100%; padding: 0; margin: 0; }
As WillyP said, the pictures very large, not just in dimension, but in file size. The slide images range from 1MB to 2.4MB and should be 50-100KB. This will make viewing this site very expensive and very slow.
Your images are much taller than wide, which is not suited for the Image Slider which is wider than it is tall. Images used in the Image Slider are best sized to 1110px x 480px.