What's the code to change the blue text on my interest box?
Edit, 2020-12-05: Here's 1 variation if anybody's having the same problem as me! TY alex ^^
.details-table td { color: #008000; }
What's the code to change the blue text on my interest box?
0 Kudos
Comments
Displaying 4 of 4 comments ( View all | Add Comment )
Sal
oh!!! tysm
Report Comment
meh!!
alex there is totally right, but to make sure nothing else in your css is overriding that, put it at the bottom of your style, and add !important to it. it should stick then. i'd go for
.details-table tr td:first-child p{color: red !important;}
Report Comment
Sal
vv Hm... Doesn't seem to work. It's alright! Thank you for your help tho! :) I'll try to figure it out. vv
Report Comment
alex
Hey! This code should work, let me know if it doesn't!
.details-table td {
color: #008000;
}
Report Comment