Private: Home › Forums › WordPress Themes › Metropolis – Clean Multipurpose WordPress Theme › Grid size in portfolio caresoul › Reply To: Grid size in portfolio caresoul
September 14, 2014 at 2:55 pm
#326
Keymaster
I just want to add, that for Portfolio carousel you can change image width in code (cleanbiz / includes / shortcodes.php) on line 965.
After that you will need to adjust list element width with CSS below:
#portfolio-carousel > li{
width: 600px;
}
Set same value for width as you did for image.
You might also need to tweak container height:
.portfolio-carousel .caroufredsel_wrapper{
min-height: 380px !important;
}
This might not be all CSS you will need to change so please read this tutorial that will help you understand how to modify WordPress theme.