Hi,
Enfold 3.1.5
I’m using this CSS to remove flags and insert text (on the switcher).
Quick CSS I’ve found and I’m using:
.language_flag img {
display: none !important;
}
.native_name {
display: block !important;
}
I want to use the “language tag” (not the language code) – http://prntscr.com/7abvd9
How should I change the CSS?
Thanks in advance! Afonso
Hi atainha!
Can you please post a screenshot of changes you would like to make and a link to your website?
Cheers!
Yigit
Hi Yigit.
You can see here: http://prntscr.com/7aewjl
Site is local – not on internet yet. :-/
Thanks! Afonso
Hey!
There is not default option to show the language tag but you can adjust it using css. For example, to change the dutch and english language flags, use this in the Quick CSS field:
.language_de .language_flag:before {
content: 'de-DE';
}
.language_en .language_flag:before {
content: 'en-US';
}
.avia_wpml_language_switch li .language_flag img {
display: none;
}
The last code will hide the flags.
Cheers!
Ismael