How to Round Filter Tabs
A few of our newer themes will automatically have tabs displayed rounded on a table if you would like to implement this for the default or another theme. The following is a solution to do so.
One Easy Step
Depending on if your tabs have color applied or not, add one of the two codes below to the CSS tab of your page.
Tabs with colored Label
.nav-tabs .tab-colored a {
border-radius: 10px 10px 5px 5px;
}
Tabs without colored Label
.nav-tabs > li > a {
border-radius: 10px 10px 5px 5px;
}
Original Community Post:
How to round filter tabs - Community Discussions / How Do I - Tadabase Community
We'd love to hear your feedback.