Hi guys, I think I might remember enough CSS to make the necessary changes, but is there any kind of reference for...
Hi guys, I think I might remember enough CSS to make the necessary changes, but is there any kind of reference for the classes and such I'm looking for? Right now, I'd like to change the appearance of the due date when it's today, because it sometimes gets a little lost amongst the tags. Thanks!
I'd suggest doing the converse. Color code your tags (go to tags page, click box to left of each tag). This helps non-tag data stand out better, plus greatly relieves tag confusion.
ReplyDeleteI already have my tags color-coded. That's one of the reasons why the "today" is not standing out very well. I suppose I could make sure I'm not using red or orange for any of my tags, since the "today" is rendered with red letters and a red border.
ReplyDeleteI think you need something like
ReplyDelete.dueDate.today {
background-color: darkorange;
color: white;
border-color: orange;
}
Would it work?