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!

#1700 Captions create line break mid word

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 johnson03055 on Monday, 07 September 2015 08:28 UTC

johnson03055
 The captions are getting a line return in mid word instead of wrapping the text at the nearest space.

See the attached where the line break for the word "displayed" occurs as "display ed" an the word "August" is displayed with the break as "A ugust"

sbluege
The word wrapping is set by plain CSS to prevent any overflow issues. You can add a different setting to your templates CSS file.

This is the current setting:

.eventgallery-tiles-list .wrapper .data {
    word-break: break-all;
    word-wrap: break-word;
}

johnson03055
Thank you