Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. 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