http://kriesi.at/themes/enfold-restaurant/menu/
How can I control the size and shape of these thumb nails in the catalogue?
I would like to be able to make the images in a rectangle shape.
Can I do this with quick css ?
Thank you.
Hi Micheal0424!
You can use this CSS to change their dimensions.
.av-catalogue-image {
height: 50px;
width: 100px;
}
For the actual image size look on line 118 in the functions.php file.
$avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs
Regards,
Elliott
Worked perfectly, thank you very much!!