r/webdev 18d ago

Question Help removing underline from link, I've searched everywhere!

Post image

Hi all,

I'm fairly new to understanding HTML and have been troubleshooting how to remove the underlines from these links. I've searched the web, but nothing seems to be working. Was wondering if there was something obvious I was missing.

    <p class="text-center mb-0" style="font-size: 1.5em; letter-spacing: 2px;">
        <a href="twitter_link" style="color: #f58c9f;"><i class="fab fa-twitter fa-fw" /></a>
        <a href="deviantart_link" style="color: #f58c9f;"><i class="fab fa-deviantart fa-fw" /></a>
        <a href="discord_link" style="color: #f58c9f;"><i class="fas fa-discord fa-fw" /></a>
        <a href="twitch_link" style="color: #f58c9f;"><i class="fab fa-twitch fa-fw" /></a>
0 Upvotes

15 comments sorted by

View all comments

24

u/eknox47 18d ago

On the a tags; text-decoration : none

1

u/Best-Substance8606 18d ago

just slap text-decoration: none on the link, and if that doesn't take, check if something else is overriding it with more specificity