Community Tip - You can change your system assigned username to something more personal in your community settings. 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