Community Tip - You can Bookmark boards, posts or articles that you'd like to access again 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