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!

#1122 Event Gallery editor plugin

Posted in ‘Event Gallery Extended’
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 hyperdrone on Saturday, 08 November 2014 20:28 UTC

hyperdrone
 Hi..

I just purchased this component and loving it so far.

Question: I am trying to use the Event Gallery editor plugin to insert my gallery into an already existing K2 article. I get this code to use:

{eventgallery event='JapanDayCentralPark2009' attr=images mode=imagelist max_images=0 thumb_width=50}

and get this view:



How do I get view where images are in a balanced grid *with* the editor plugin like your site:

http://www.svenbluege.de/joomla-event-gallery/demo-ajax-list#0
http://www.svenbluege.de/joomla-event-gallery/demo-pageable-list
http://www.svenbluege.de/joomla-event-gallery/demo-image-list

Thanks

sbluege
Without a link to confirm my assumption I guess your template sets something like this:

img {
max-width: 100% !important;
height: auto !important;
}


The height: auto !important; is not very nice. Please remove the !important and it should work.

Just to make sure we're on the same page: the ajax list layout is not available with the content plugin. But the other two are. Event Gallery 3.3 offers the grid and the tile layout in addition.

hyperdrone
Here is the url: www.hypereye.com

Where would I make the change you mentioned.

Thank you.

sbluege
Change the ile http://www.hypereye.com/templates/gk_writer/css/joomla.css, line 181 from this:

.item-content img,
header img,
#k2Container img {
	height: auto!important;
	max-width: 100%!important
 }


to this:

.item-content img,
header img,
#k2Container img {
	height: auto;
        max-width: 100%;
}

hyperdrone
Excellent! Thank you!