How to: Changing the thumbnail:
I found a way to change the thumbnail, it’s the most beautiful way but it works. In the core.php file you will find the following on line 52:
<img src="assets/images/<?=$folder?>/<?=$v?>" alt="" />
I added some styling to this to change the size:
<img src="assets/images/<?=$folder?>/<?=$v?>" alt="" style="border:0px;width:80px;height:80px;"/>
So it crops the images, as I said, not beautiful but it does the job.
Help needed: More than one gallery on a page
I want to add more than one gallery to a page, this results in a completely empty blank page, not even any html. How can I add two or more of those galleries?