Center WPML flags in topbar under 979px

Hi,

I try to center the WPML flags in the topbar under 979px. Now above 979px are right, that’s okay but under 979px they are left but I like them centered in the topbar. Can you please help…?

https://altemetzgerei.nl/wp/

Hello @cvdw,

Thanks for writing to us.

To align the WPML flags in the center under 979px you can use this custom CSS code under Theme Options —>CSS

@media(max-width:979px){
.wpml-ls-legacy-list-horizontal {
padding: 0px;
clear: both;
float: none;
text-align: center;
display: block;
}
}

The purpose of providing custom CSS is to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.In case if you have no idea about coding you can subscribe to One where customization questions are answered.

Hope it helps.
Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.