Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
Pages: 1
How can I change the icon for choosing another language? I think visitors cann't find it. A flag would be nice.
Offline
Offline
You can change that with custom css.
the css controlling that icon is this:
.fa-globe::before {
content: "\f0bc";
}
the icon code in that bit is: \f0bc
You just need to go to the Font Awesome site and find another. Backlight uses Font Awesome version 4.7, so choose from those icons: https://fontawesome.com/v4.7.0/icons/
click on the icon you want to use and look for the unicode.
for example, this will give you a solid flag:
.fa-globe::before {
content: "\f024";
}
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Pages: 1