Hi
I am going to change the title link colors of the course and units.
https://prnt.sc/kzqfcr
- I would like to change all four situations below.
- a:link, a:visited, a:hover, a:active
What css code do I add to custom css?
@jundchinese,
This is the custom css when you hover on any link of the course on the homepage. On hover the color will changes.
You have to paste this custom css code in wp-admin > Appearance > customize > custom css
.block_title a:hover{color:#ff0000;}
similary, you have to add the css for other situations as well. You have to check only in which unit the link is wrapped and then paste the code using the class or id of that unit(in which div the link is wrapped)
It has helped a lot.
With your help, I was able to change the link color of the block.
https://prntscr.com/l02npf
However, it also affects the link color of blogs and pages.
https://prntscr.com/l02njd
I want to keep the color of the links on my blog and page intact, and I want to change the color of my link to black only.
Please help me ㅠㅠ
@jungdchinese
To change the link color of home page
.home-page .block_title a:hover{color:#ff0000;}
To change the link color of Single course Page
.single-course .block_title a:hover{color:#ff0000;}
To change the link color of Blog Page
.blog .block_title a:hover{color:#ff0000;}
Using these classes you can change the link color of a particular page block. Use this custom css instaed of above one