Tagged: tabs
I want that Tabs items stays horizontal also in mobile. I see that they switch to vertical display on screen sizes smaller than 767px.
How to solve this with CSS.
Thanks.
Hey Pasteta,
Please link to your page so that we can understand better.
Best regards,
Mike
Hi,
Thank you for the link.
You can add this css code to display the default tab titles side by side, aligned with each other, and hide the alternate ones.
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
.responsive .tabcontainer .tab_titles {
display: block;
}
.responsive .tabcontainer .tab.fullsize-tab {
display: none;
}
}
Please note that this modification will affect all Tab elements in the page.
Best regards,
Ismael