Banners In Cscart 4.1.2 Strech Instead Of Center

After the installation of the new version(from 4.0.3) I discovered that carousel streches the images in the block, instead of centering them.

This behavior is not desirable.

How can I restore the previous behavior that centered the images instead of streching them?

Does noone else have a problem with this change in the new version?

Could you, please, at least point me to the right direction for solving the problem or, maybe, give me some suggestions for other add-ons I may use for displaying the banners the way I want(that is, the images centered in the blocks, not streched).



Thank you in advance for any suggestions you may have.

Ive been looking for a way to resize the banners, cant seem to figure anything out either.

[quote name='parodius420' timestamp='1392702382' post='177718']

Ive been looking for a way to resize the banners, cant seem to figure anything out either.

[/quote]



Uses CSS @ Design → file editor-> find banner → css. from the left menu

[quote name='Ductst' timestamp='1392708869' post='177723']

Uses CSS @ Design → file editor-> find banner → css. from the left menu

[/quote]



That worked. I found styles.css at /httpdocs/design/themes/basic/css/addons/banners and I changed

.banners img {

display: block;

width: 100%;

height: auto;

}



to



.banners img {

display: block;

width: auto;

height: auto;

margin: auto;

}



Thanks a lot!