Hi I would like to change te note icon and remove the number to a custom icon like how...
Hi I would like to change te note icon and remove the number to a custom icon like how can I do this using CSS? thanks :)
Here are all posts from Checkvist's 5 years on G+.
Join the live discussion forum https://discuss.checkvist.com
Try this CSS:
ReplyDelete.hasSomethingIcon.hasNote:before {
content: "\f0c2";
visibility:visible;
}
.hasSomethingIcon.hasNote {
visibility:hidden;
}
works, thanks
ReplyDelete