Opacity partner icons

Hey Movin, how are you?

I was wondering if there is a quick css edit to reverse the mouse over effect for the partner icons.

I want them to be 100% visible by default and change or stay the same on mouse over, the opposite of what it is now.

Thanks you

Ezra

Hi Ezra,

I am doing well and i hope you are also well.

Could you please tell me a bite more in detail by sharing the screenshot of what you are referring as partner icons so that i can help you?

Best Regards,
Movin

I;m fine thank your. You’re right forgive me. Below is a screenshot, I already partly figured out what the custom css would be but i’d just like to set the opacity to 100% and to about 50% on mouse over.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other

#page .logo-carousel li {
    opacity: 1;
}
#page .logo-carousel li:hover {
    opacity: 0.5;
}