Hi,
how can I add additional sizes for pictures
thx Thomas
Hey ThomasWitzany!
Thank you for using our theme.
Open functions.php and goto line 91.
If you are using a child theme, you can put your changes also in functions.php, bot need an action hook:
add_action ('init', 'my_custom_sizes', 99);
function my_custom_sizes()
{
global $avia_config;
put your changes here
}
Cheers!
Günter