Post-click hyperlink style
- The topic ‘Post-click hyperlink style’ is closed to new replies.
Need help? Check out our Support site, then
Hi Djordje,
Previously, based on your advice, I had applied the following CSS to change the hyperlink style. Is there another snippet I can add to change the colour of the hyperlink once it is clicked?
.single .post-content a, .single .post-content-secondary a, .page-content a {
color: #fff;
text-decoration: underline;
}
.single .post-content a:hover, .single .post-content-secondary a:hover, .page-content a:hover {
color: #fff;
text-decoration: underline;
}
The blog I need help with is: (visible only to logged in users)
(subscribing to email notifications)
Hi Irfan,
Of course, for visited links you can use this class:
.single .post-content a:visited, .single .post-content-secondary a:visited, .page-content a:visited {
color: #fff;
}
Thank you,
– Djordje