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!

#4743 Icon instead of text

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.

PHP Version
8.2
Joomla Version
5.2
Test URL
http://202.61.245.122/

Latest post by sbluege on Wednesday, 10 July 2024 17:34 UTC

joachimF

Hallo,

How can I replace the text 'zurück' with an icon?

Attachments

Screenshot_20240710_103119.png

sbluege

Hi, 

These solutions come to my mind:

  • Use the Joomla Language Manager to replace 'zurück' with an UTF8-character
  • Overload the template for the button (not recommended)
  • use CSS and the ::after-pseudoselector  like this: 

    .eventgallery-back-button {
      visibility: hidden;
      text-decoration: none;
    }

    .eventgallery-back-button::after {
        content: '<<<';    
        visibility: visible;
    }