Hi there, I need my links within the site to show up as a different colour how do I do that? Many thanks Elly
Hello Elly, All the links which you want to show in a different color give them a special class like as <a href="" class="special">Home</a>, Then apply css code on all links as following Code: a.special{ color: red; } It will resolve your issue. Thanks & Regards Yogesh Bhade