Tagged: tab section
Dear support-team,
I try to remove the grayscale from inactive tabs in the tab-section as explained in the enfold documentation (https://kriesi.at/documentation/enfold/tab-sections/). But there is no difference? I already looked for additional code in the forum and emptied the cache but it does not work. Is there anything else I can do to remove the grayscale?
I tried this without any effect:
/*————————————————————-
// CSS – Remove greyscale from inactive tabs
//————————————————————*/
.av-tab-section-image {
filter: none!important;
}
Thank you for your help!
Best regards,
Juli
I solved it with
/*——————————
// CSS – Remove grayscale from inactive tabs
//——————————*/
}.av-tab-section-image {
filter: none! important;
}
.av-tab-section-image {
filter: grayscale(0);
}
Is there a possibility to remove the hover effect as well?
Hi,
Sorry for the late reply, glad to hear you found a solution. To remove the hover effect Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
#av-tab-section-1 .av-tab-section-image {
opacity: 1 !important;
}
Best regards,
Mike
Hello Mike,
that is perfect – now everything looks just like I wanted it. Thank you very much!
Best regards,
Juli