Hello! Thank you in advance for any help.
I am using the tab element on this page: https://dev4kostbare.wpengine.com/services/
It works great! However, on mobile – the tabs become stacked into an accordion.
Curious if there was a way to keep the tab titles at the top of the window (similar to how it appears on desktop), rather than stack in mobile.
Hey flordelizamejia,
Thank you for the inquiry.
Yes, that should be possible. Please try to add this code in the Quick CSS field or in the child theme’s style.css file.
@media only screen and (max-width: 767px) {
.responsive .tabcontainer .tab_titles {
display: block;
}
.av_tab_section .tab[itemprop="headline"] {
display: none !important;
}
}
Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.
Best regards,
Ismael
AMAZING! This worked perfectly!
Thank you so much for the support =)