Bri22222 Posted July 29, 2020 Share Posted July 29, 2020 Site URL: https://siliconvalleyins.com/silicon-valley-insured Under the What Do You Want To Protect header, they want each link to be a different color (red, green, orange, etc.) In my custom code I did make each a different color, but for some reason all but the first link reverts to the default link color of yellow. I attached a picture of my markdown code. Can anyone figure out why this is? Link to comment
Solution rwp Posted July 30, 2020 Solution Share Posted July 30, 2020 Set the color of the <a> tag and don't use the markdown short hand. <span><a href="/silicon-valley-insured/#myvaluables" style="color: indigo;">My Valuables</a> 💍</span> Bri22222 1 Link to comment
Bri22222 Posted July 30, 2020 Author Share Posted July 30, 2020 Thank you RWP!! rwp 1 Link to comment
Bri22222 Posted July 30, 2020 Author Share Posted July 30, 2020 The only thing is now all but the first link are underlined. Any ideas about that? Link to comment
rwp Posted July 30, 2020 Share Posted July 30, 2020 (edited) Design -> Custom CSS (only pick one) To REMOVE underline: #block-yui_3_17_2_1_1591311949370_22623 span a { text-decoration: none !important; border: none !important; } To ADD underline to all: #block-yui_3_17_2_1_1591311949370_22623 span a { text-decoration: underline !important; border: none !important; } Edited July 30, 2020 by rwp Link to comment
Bri22222 Posted July 30, 2020 Author Share Posted July 30, 2020 Amazing, thank you so much RWP. rwp 1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment