Page 1 of 1

Can carousel display images smaller?

PostPosted: Thu Apr 23, 2015 4:10 pm
by gracefuli
Am using the familiar template. Followed previous posts and have it set to display left menu also. But images are displayed just much larger than i would really like. can this be adjusted? thanks

Re: Can carousel display images smaller?

PostPosted: Fri Apr 24, 2015 6:47 am
by BFChris
Your best bet is to assign a max-width to the carousel container in your CSS with something like:

Code: Select all
div#carousel {
   max-width:800px;
   margin-left:auto;
   margin-right:auto
}


Set left and right margins auto to center the picture in the available space.

This will prevent the images from displaying larger. To be responsive, the carousel itself displays the image at width=100% of its container.

Re: Can carousel display images smaller?

PostPosted: Fri Apr 24, 2015 10:21 am
by gracefuli
hmm... not sure where to add this. In the BB-BXSliderCarousel.sst?

Re: Can carousel display images smaller?

PostPosted: Mon Apr 27, 2015 7:56 am
by BFChris
It would probably be best to add it in the page's stylesheet or directly in the <head> section of the page wrapped in

Code: Select all
<style type="text/css">
</style>


tags