Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X
Hi ,
I am trying to call myLabelClass from the custom css in the property of the label.
But there is not success in this.
could someone help me out with this.
Solved! Go to Solution.
Try adding !important after style properties, e.g.
.fonttest-style .widget-ptcslabel {
font-size: 30px !important;
color: #FF0000 !important;
}
Try adding !important after style properties, e.g.
.fonttest-style .widget-ptcslabel {
font-size: 30px !important;
color: #FF0000 !important;
}
Hello MK_9986318
Try this:
.myLabelClass .widget-ptcslabel:not([no-wc-style]) {
color: #003DA5;
margin: 0;
}
I believe it will work like you expect.
Regards,
Peter