DenaW Posted December 29, 2023 Share Posted December 29, 2023 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 Link to comment
Solution melody495 Posted December 29, 2023 Solution Share Posted December 29, 2023 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. DenaW 1 -------- > 👆 <---------- Please quote or @ me when replying, or I won't get a notification Melody | Squarespace Nerd e: melody@melodylee.tech 💻 💁♀️ 1-2-1 Squarespace Training session <- feeling stuck and want to learn? 👩💻 💁♀️ Website help <- send me your to-do list. From code to plugin to domain setup. 🧰 See the tools I use (contain affiliate links) ☕ Did I help? I like coffee (Thank you) Link to comment
DenaW Posted December 30, 2023 Author Share Posted December 30, 2023 OMG!! IT WORKED!!! You Are Amazing!! Link to comment
melody495 Posted December 30, 2023 Share Posted December 30, 2023 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 } tuanphan and DenaW 1 1 -------- > 👆 <---------- Please quote or @ me when replying, or I won't get a notification Melody | Squarespace Nerd e: melody@melodylee.tech 💻 💁♀️ 1-2-1 Squarespace Training session <- feeling stuck and want to learn? 👩💻 💁♀️ Website help <- send me your to-do list. From code to plugin to domain setup. 🧰 See the tools I use (contain affiliate links) ☕ Did I help? I like coffee (Thank you) 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