Is there a way to change the hyperlink color within a page itself using HTML or a user macro?
P.S.:I know I can change the color schema for the entire wiki space but this time I really only need to change the color of specific links.
Community moderators have prevented the ability to post new answers.
Placing the the HTML Macro on your site with the following code inside:
<a href="https://www.wikipedia.com" style="color: #de1738; font-weight:bold">Wikipedia</a>
Exchange the URL and the text to your needs. The link will appear in red (#de1738).
The color code can be changed to any color you prefer. If you don't want the link to appear in bold just delete ; font-weight:bold
<a href="https://www.wikipedia.com" style="color: #de1738">Wikipedia</
All you need to do is use the CSS color property on the anchor tag with whatever color Hex you want.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks! I thought way to complicated and couldn't think of the easiest solution. Your food for thought helped me to get into the right direction.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.