# How do I remove underline on text anchor links?

**URL:** https://forum.pinegrow.com/t/how-do-i-remove-underline-on-text-anchor-links/8895
**Category:** Beginners
**Created:** [May 2, 2024, 1:25pm UTC](https://forum.pinegrow.com/t/how-do-i-remove-underline-on-text-anchor-links/8895 "2024-05-02T13:25:13Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![welski](https://avatars.discourse-cdn.com/v4/letter/w/96bed5/32.png) [@welski](https://forum.pinegrow.com/u/welski)
#### Post date: [May 2, 2024, 1:25pm UTC](https://forum.pinegrow.com/t/how-do-i-remove-underline-on-text-anchor-links/8895/1 "2024-05-02T13:25:14Z")

</div>

Hi everyone, I’m a 1 day old user of pinegrow. Absolutely loving it.  
I made this very simple HTML for a blog I am making but I am having a hard time figuring out how to remove those underline on the text links.

 ![image](https://canada1.discourse-cdn.com/flex036/uploads/pinegrow/original/2X/4/49abf680f3d1fcae72df9f86fd48ecd0c2fff5a9.jpeg)

I would appreciate any help!

---

<div class="post-metadata">

### Author: ![ChrisUT](https://avatars.discourse-cdn.com/v4/letter/c/848f3c/32.png) [@ChrisUT](https://forum.pinegrow.com/u/ChrisUT)
#### Post date: [May 2, 2024, 4:43pm UTC](https://forum.pinegrow.com/t/how-do-i-remove-underline-on-text-anchor-links/8895/2 "2024-05-02T16:43:24Z")

</div>

Hey, welcome to Pinegrow. Definitely a powerful tool with a steep learning curve for us newbies (assuming you’re a newbie like me 🙂 )

CSS property for this is text-decoration: none;

You can add it directly to the code or in the visual editor it’s in the “Text” controls section. See attached.

 ![Screenshot 2024-05-02 at 10.41.49 AM](https://canada1.discourse-cdn.com/flex036/uploads/pinegrow/original/2X/d/d1e5ab4436c216b74138f60defc2ca5e16a35495.png)

---

<div class="post-metadata">

### Author: ![welski](https://avatars.discourse-cdn.com/v4/letter/w/96bed5/32.png) [@welski](https://forum.pinegrow.com/u/welski)
#### Post date: [May 3, 2024, 6:50am UTC](https://forum.pinegrow.com/t/how-do-i-remove-underline-on-text-anchor-links/8895/3 "2024-05-03T06:50:04Z")

</div>

Thank you!

Now I know the button to click 🙂

I thought unclicking the T with underline would remove

What I did was hard coding the text-decoration: none

---

<div class="post-metadata">

### Author: ![Zahra](https://avatars.discourse-cdn.com/v4/letter/z/aeb1de/32.png) [@Zahra](https://forum.pinegrow.com/u/Zahra)
#### Post date: [May 30, 2024, 6:59am UTC](https://forum.pinegrow.com/t/how-do-i-remove-underline-on-text-anchor-links/8895/4 "2024-05-30T06:59:24Z")

</div>

> [@welski](#):
>
> Hi everyone, I’m a 1 day old user of pinegrow. Absolutely loving it.  
> I made this very simple HTML for a blog I am making but I am having a hard time figuring out how to remove those underline on the text links.

Welcome dear!  
you can add a CSS rule. Open your CSS file or add a `<style>` section in your HTML and include `a { text-decoration: none; }`. This will remove the underline from all links on your page. If you want to target specific links, add a class to those links and use `.your-class { text-decoration: none; }` in your CSS. This should solve the issue.  
Enjoy using Pinegrow [😊](https://dlinxapk.com/kinemaster-mod-apk/)
