Support

Support is part of Event Gallery Extended.

Please get a subscription if you need support. Feel free to use the ticket system or the contact form for reporting defects or pre-sale questions. Make sure you're logged in in order to be able to create a new ticket.

For general information you can also jump to the manual.

Subscribe now!

#412 Tiles list format size

Posted in ‘Event Gallery - General’
This is a public ticket

Everybody will be able to see its contents. Do not include usernames, passwords or any other sensitive information.

Latest post by webshopdepo on Saturday, 15 February 2014 13:19 UTC

webshopdepo
Hi All,
I have a problem with Tiles List: some of my pictures' size is 580x960 px, so the thumbnail of the photo does not show the whole picture, just a part of it, like here:
http://pillanatkepstudio.hu/index.php/portfolio
How can I format the thumbnails to adust them to the original picture?
Thanks is advance for your reply.
Janos

sbluege
Someone sets this in your templates html source:

/* MAX IMAGE WIDTH */
img {
height:auto !important;
max-width:100% !important;
-webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box !important;    /* Firefox, other Gecko */
box-sizing: border-box !important;         /* Opera/IE 8+ */
}


The height: auto !important; is not very nice. Please remove the !important and it'll work. Otherwise the JavaScript layout algorithm will not work.

webshopdepo
Thanks for the quick and correct reply.
It works!