0
julia
Hello. I have vertical tabs set up, but I want them to change to horizontal (or stacked on top of each other with content below each tab) on mobile. How can I make this happen?
2 Subscribers
Submit Answer
2 Answers
Best Answer
0
Can you please add following CSS to fix vertical tabs turn accoridon in small screen.
@media screen and (max-width: 600px) {
.tabs-container {
width: 100% !important;
}
.ui-tabs-vertical .tabs-content {
padding: 1em;
float: none;
width: 100% !important;
padding: 0;
}
.ui-tabs-vertical .tabs-content p {
padding: 10px;
}
}
Regards
Best Answer
0
Welcome to our forum.
For the small screen tabs will turn as accordion. please see the screenshot
http://imgur.com/a/tMe7i
Regards

Hello. Are you able to help with my above query (Aug 31 2017 06:26 PM)? Thanks!