Hi Richard, This is what you can do for for the carousel:
.manufacturers-carousel .item-picture a {
border: medium none;
height: 150px;
position: relative;
}
.nop-jcarousel .item-picture img {
position: absolute;
bottom: 0;
left: 0;
right: 0;
top: 0;
margin: auto;
}With the first code we give height to the wrapper element. You need to add only the bold one styles. You can find the existing styles in 'Plugins/SevenSpikes.Nop.Plugins.JCarousel/Themes/Content/
JCarousel.css'.
The second selector '.nop-jcarousel .item-picture img' you will also find there. You can simply remo all the line and replace it with the one I am sending you:
.nop-jcarousel .item-picture img {
position: absolute;
bottom: 0;
left: 0;
right: 0;
top: 0;
margin: auto;
}Please write back if there are some more issues.