ZenphotoCMS Forum
Max size of picture - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: Themes (https://forum.zenphoto.org/forum-5.html)
+--- Thread: Max size of picture (/thread-12574.html)



Max size of picture - imagepet - 28-08-2016

Hi all,
I'm working with a customized zpmobile theme. In the admin page, the max. size of the picture is limited to 595 px and greyd out. I found a post explaining it with layout reasons.
C'ause I have rised the width of the mainpage to 1260 px, I wish to enlarge the pictures to 640 px. I didn't find the spot to adjust it. Any help?

Thx
imagepet




Max size of picture - fretzl - 28-08-2016

In themeoptions.php you'll find
function getOptionsDisabled() { return array('custom_index_page', 'image_size', 'thumb_size'); }
Change it to:
function getOptionsDisabled() { return array('custom_index_page', 'thumb_size'); }
so the "Image size" option becomes available again.




Max size of picture - imagepet - 29-08-2016

Hi fretzl,

Thx, it works.