Hi
How can I change the colour of the text that has link in it?
“Software Expand” text is not obvious on http://sansan.qriosity.com.sg/2015/12/30/announcing-a-specification-for-php/
Whats the CCS code for this?
Thanks!
Hello joyceloh,
Please try the code below and add it int Theme panel->Custom CSS area.
.td-post-content a:hover {
color: red;
}
The result -> http://screencast.com/t/llcB6p29Z
If is not what you mean, please provide more details so I will be able to provide a more accurate response.
Thank you for the message!
Hello joyceloh,
You have to use the same code that I gave you above but without hover.
The code is ->
.td-post-content a {
color: red;
}
The result you should see here -> http://screencast.com/t/8r1bgWEz3X
Thanks.
Hello tomdouble,
Yes, the code above works only for posts, as you can see in the above code is targeted the class specific only for posts. If you want to apply this code for your homepage, you have to replace the .td-post-content with .home.
The code is ->
.home a {
color: red;
}
Thank you for the message!