Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X
I'm struggling with the CSS to change a button's color dynamically (by passing in different class names to the widget). I'm able to get this to work:
#root_ptcsbutton-7:not([no-wc-style]).widget-content {background: #FF0000; !important}
But it's tied to the ID of the button. I'd like to do it by class instead so it can be more generic.
Solved! Go to Solution.
Of course I figured it out minutes after I posted...
.myCustomClass .widget-content{background: #FF0000 !important;}
seems to do the trick for anyone wondering..
Of course I figured it out minutes after I posted...
.myCustomClass .widget-content{background: #FF0000 !important;}
seems to do the trick for anyone wondering..