Remove styling from widget

Hi,
I’ve just installed WPML, and the last thing I need is to remove the styling from the widget that contains the language switchers (the flags). I’ve been trying to do some CSS but it didn’t work for me.

I don’t want any styling - no hover, no nothing - just the flags with same space between them.

Can you help me out?

The site: https://logodesign.studio

Thanks in advance!

Hi @Kobber,

Thanks for reaching out.

To remove the styling of your widget WPML, you need to do ith with custom CSS, please add this code to your Pro > Theme Options > CSS

    .widget .wpml-ls ul {
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .widget .wpml-ls ul li {
        box-shadow: none;
        border: 0;
    }

    .widget .wpml-ls ul li:hover {
    	background: transparent;
    }

    .widget .wpml-ls ul li a {
        border: 0;
    }

The code above will only target the WPML widget. Please note that custom development is outside the scope of our support. Issues that might arise from the use of custom code and further enhancements should be directed to a third-party developer.

Hope that helps.

Thank you.

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