This topic has 6 replies, 3 voices, and was last updated 7 years, 10 months ago ago by Rose Tyler
How can I reduce the size of the tab box where the Titles go? I have taken out the padding but still would like to make the box smaller? Reduce height and decrease width? Maybe font size? This becomes most important on mobile view when using left bar tabs.
Thanks.
Hello,
To reduce the width of the tabs title box add the following code in custom CSS area or child theme style.css
.left-bar .left-titles {
width: 20%;
}
.left-bar .tab-content {
width: 80%;
}
.left-bar.tabs .tab-title {
font-size: 14px;
}
Regards
Thanks. That does everything I need EXCEPT it does not reduce the height of the Left Tab Title box itself. Reducing font size does not adjust height of the box. I am looking to reduce the box size, then the font adjustment will be useful.
Appreciate the help.
Hello,
You can also use this code:
.single-product .left-bar .left-titles li {
padding: 10px;
}
Regards,
Rose Tyler.
That last css code does the trick in reducing size of title box. Thanks!
Hello,
You’re welcome!
Regards
The issue related to '‘Single Product Page – Left Bar Tab Title Box Size’' has been successfully resolved, and the topic is now closed for further responses