I have several links in my posts and pages and I want them to visibly be a different color so people know that they are clickable. How do I do this?
Hello, Give a class to all link that you want to visible by a different color like as-- <a href="" class="implink">Hello</a> <a href="" class="implink">Hi</a> <a href="" class="implink">Demo</a> And then apply CSS on all link as-- Code: a.implink{ color:red; } That will resolve your issue. Thanks & Regards Yogesh Bhade