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!

#1381 Image List

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 sbluege on Wednesday, 04 March 2015 07:40 UTC

Whiterose
 Hey There,

I am building a new website for our photography business, I had one identical running up until I broke it trying to move it. The new one I am working on does not display the image correctly. I have attached a picture showing what it is like. If you change the size of the browser, even a millimeter it displays perfectly

Please Help!

the gallery is at http://trial.whiterosephotography.co.nz/index.php/galleries/children

Thanks

Attachments

screen1.png

Whiterose
Well after a lot of reading through the template code I found the issue! There was something resizing the avatar-content to 99% casing the last image to drop to the next line. It turned out it was a javascript file (avatar-template) with the below code:

if($(window).width() > 767)
{
var right = $('#avatar-right'),
left = $('#avatar-left'),
content = $('#avatar-content'),
rw = 0,
lw = 0;

pw = content.parent().width();

if (right.length > 0) {
rw = right.width()/pw*100;
}

if (left.length > 0) {
lw = left.width()/pw*100;
}

if (content.length > 0) {
content.width((100 - rw - lw - 1) + '%');
}
}
}

I changed the last line to "content.width((100 - rw - lw) + '%');" and had 100% again and working fine.


I hope this may help someone else out there :)

sbluege
I have two additions. Some of your images are too small which will cause layout issues too. And you should not use 3.2.3 since there is no Extended version. Jump directly to 3.3.0 instead.