Community Tip - Want the oppurtunity to discuss enhancements to PTC products? Join a working group! X
Using the Tabs widget in ThingWorx 8.5.7, it adds a 20px margin around the content of each tab. Is there a way to remove or reduce that margin?
I found another topic here about adjusting the margin in a Tabs widget with a solution of the custom CSS below, but adding that CSS doesn't change anything for me.
ptcs-page-select::part(pages)
{
margin: 10px !important;
}
Solved! Go to Solution.
Try with this:
.widget-ptcstabset::part(pages) {
margin: 0px !important;
}
It worked for me in TW 9.
Try with this:
.widget-ptcstabset::part(pages) {
margin: 0px !important;
}
It worked for me in TW 9.
Thanks!