Hi,
I'm wondering how to change the color of the read more link. I tried adding to style1.css:
.more-link {color:FF9000}
But that didn't work.
Thanks.
Hi,
I'm wondering how to change the color of the read more link. I tried adding to style1.css:
.more-link {color:FF9000}
But that didn't work.
Thanks.
Hi,
You missed the hash sign for hex color code.
.more-link {color: FF9000}
Replace above code with this
.more-link {color: #FF9000}
Regards,
Ismael
Hmm. Still not working.
Check it out: http://www.theresolved.com/?cat=12/
Hi dsmets,
Try using this code instead:
.more-link {
color: #FF9000 !important;
}
Hope this helps. :)
Cheers,
Ismael
That did it! Thanks!
This topic has been closed to new replies.