I want to change the background image of the language switcher icon here. If anyone knows how to do this and where I can find the 'language_switcher.css' file to modify the . globe_class , please let me know.
the language_switcher.css is part of the files that aren't accessible to public.
If you only want to change the icon you can change it with this class:
.globe_class:before {}
(You might need to use !important)
Also - here are some more helpful language-switcher related classes:
.lang_list_class{} {# The language-switcher dropdown #}
.lang_list_class li{} {# Each language element inside the dropdown #}
.lang_list_class li a{} {# Each Link/Text element of the dropdown #}
Beside that you can also create either a custom module or global partial for the language switcher and put it directly into the base.html/layout.html. That's also possible
the language_switcher.css is part of the files that aren't accessible to public.
If you only want to change the icon you can change it with this class:
.globe_class:before {}
(You might need to use !important)
Also - here are some more helpful language-switcher related classes:
.lang_list_class{} {# The language-switcher dropdown #}
.lang_list_class li{} {# Each language element inside the dropdown #}
.lang_list_class li a{} {# Each Link/Text element of the dropdown #}
Beside that you can also create either a custom module or global partial for the language switcher and put it directly into the base.html/layout.html. That's also possible