Jump to content

Need Help removing the underline on footer?

Go to solution Solved by melody495,

Recommended Posts

Hi

I have had the hardest trying to remove the underlined links in the footer.  I have tired this: 

//Remove Link Underline
h1,h2,h3,h4,p,code,nav {
 a,span {
   background-image: none!important;
   text-decoration: none!important;
 }
}

didn't work for me....:(

 

please help - I appreciate your help! Thanks

Screenshot 2023-12-28 at 8.10.52 PM.png

Link to comment
  • Solution

Hi @DenaW are you trying to remove all underline from links on your website? Or just additionally the footer links?

Remove all underline - just targeting just a should work, but you can also add a to your existing CSS

//Remove Link Underline
a, h1,h2,h3,h4,p,code,nav {
 a,span {
   background-image: none!important;
   text-decoration: none!important;
 }
}

Additionally remove footer links only - add footer to your existing CSS

//Remove Link Underline
h1,h2,h3,h4,p,code,nav, footer {
 a,span {
   background-image: none!important;
   text-decoration: none!important;
 }
}

Save and refresh after editing. Let me know how it goes.

-------- > 👆 <---------- Please quote or @ me when replying, or I won't get a notification 

Melody | Squarespace Website Developer
e: melody@melodylee.tech


💻 💁‍♀️ 1-2-1 Squarespace Training session <- feeling stuck and want to learn?
👩‍💻 💁‍♀️ Website help <- send me your to-do list
 Did I help? I like coffee (Thank you)
🧰 See the tools I use (contain affiliate links)


 

Link to comment
8 hours ago, DenaW said:

OMG!! IT WORKED!!! You Are Amazing!!

You're welcome 😊 glad it's working for you.

You could probably simplify your CSS code, you would need to check for your site.

To remove all underline site wide

a {
	text-decoration: none; // most can be removed with this line. might need !important
	background-image: none; // some might need to be removed with this line. might need !important
}

To remove underline for footer only

footer a {
	text-decoration: none; // most can be removed with this line. might need !important
	background-image: none; // some might need to be removed with this line. might need !important
}

 

-------- > 👆 <---------- Please quote or @ me when replying, or I won't get a notification 

Melody | Squarespace Website Developer
e: melody@melodylee.tech


💻 💁‍♀️ 1-2-1 Squarespace Training session <- feeling stuck and want to learn?
👩‍💻 💁‍♀️ Website help <- send me your to-do list
 Did I help? I like coffee (Thank you)
🧰 See the tools I use (contain affiliate links)


 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.