WPML shadows and border remove

Hi, i want to ask how to remove shadows and border lines around languages. I’m using WPML, and added it into widget.

Hi there,

Please add this code in the Global CSS:

.widget .wpml-ls ul,
.widget .wpml-ls ul li,
.widget .wpml-ls ul li a {
    box-shadow: none;
    border: 0;
    color: #fff;
}

Here are some related links for further reading:

Hope this helps.

Nice. Thank you. But you see, around hover is a little white shadow how to delete it?. And could you help me how to change font color, font family, size and font hover color on current language and other languages?

Hello @graphictaste,

Thanks for asking. :slight_smile:

I don’t see the shadow effect on the website. Please try clearing the cache and see how it goes.

Other changes that you are looking to make, please add following CSS under Pro > Theme Options > CSS:

.wpml-ls-legacy-list-horizontal .wpml-ls-flag+span {
    color: #e16b4f;
    font-size: 150%;
    font-family: 'Roboto', sans-serif;
}

.wpml-ls-legacy-list-horizontal .wpml-ls-flag+span:hover {
    color: #fff;
}

Thanks.

Before you respond me i fix shadows with this code:

.widget.widget_icl_lang_sel_widget {
   text-shadow: none !important;

Awesome everything is okay. But i would like that current language color would be as same as hover color (#ff6642 - orange), and other languages stays (#8a949b - grey).
How to do that?

Currently code:

.widget .wpml-ls ul,
.widget .wpml-ls ul li,
.widget .wpml-ls ul li a {
    box-shadow: none;
    border: 0;
    color: #8a949b;
}
.widget.widget_icl_lang_sel_widget {
   text-shadow: none !important;
}
.wpml-ls-legacy-list-horizontal .wpml-ls-flag+span {
    color: #8a949b;
    font-family: Roboto Regular;
}

.wpml-ls-legacy-list-horizontal .wpml-ls-flag+span:hover {
    color: ##ff6642;
}

Hi again,

To do that, please add the following code in your Global CSS as well:

.wpml-ls-current-language span.wpml-ls-native {
    color: #ff6642 !important;
}

Hope this helps!

Thanks a lot. It works :wink:

You’re most welcome!

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