0
OTM
Is it possible to fix the width of a vertical tab's content, to prevent it running to far right and requiring a scroll?
I am trying to use vertical tabs nested in an accordion and the content is not fitting the width of the accordion itself, so I have to scroll to see it all. I would like to be able to set it so that the content fits to the width of the parent accordion.
2 Subscribers
Submit Answer
2 Answers
Best Answer
0
Can you please try following CSS
.accordions-tabs {
width: 100% !important;
}
.accordions-tabs .tabs-content {
border-radius: 0;
padding: 0;
width: 60% !important;
}
Let me know the result.
Regards Best Answer
0
Welcome to our forum.
Can you please send me your live link where you are using tabs?
Regards

That has done it, thank you.