Guest Posted October 8, 2019 Share Posted October 8, 2019 (edited) I already create an about pages and also link it down to my footer, but it show underline on it, how can I fix it? I try a lot of css code that I found on google or other website still does not work for Squarespace 7.1! how to remove it? (Venture templates) Edited October 8, 2019 by Staymoo Link to comment
tuanphan Posted October 8, 2019 Share Posted October 8, 2019 @Staymoo Some simple custom code can solve. But you should share site url to check. If your site is private, please setup password & share url. See how to if you don't know: https://beaverhero.com/squarespace-how-to/#How_to_Setup_Password_Share_Site_URL Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Guest Posted October 8, 2019 Share Posted October 8, 2019 (Squarespace 7.1) https://www.staymoo.com/ Password: 1234 Link to comment
tuanphan Posted October 8, 2019 Share Posted October 8, 2019 @Staymoo nice site 😂 You used border-bottom: none & text-decoration:none? Underline is background image, so border-bottom/text-decoration won't work. Add to Home > Design > Custom CSS div#block-yui_3_17_2_1_1570493637485_35714 a { background-image: none; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Guest Posted October 9, 2019 Share Posted October 9, 2019 Thanks you so much!!! it works! Im' trying to set things done first then choose plans, that's why I try a lot of css code that I found on google or even in Squarespace community still doesn't get any help, by the way thanks a lot! Link to comment
PaulBThomas Posted March 9, 2020 Share Posted March 9, 2020 In 7.1 it's just a matter of editing the footer. Go to "edit" mode and scroll down to footer, highlight the link and edit. Link to comment
Guest Posted April 5, 2020 Share Posted April 5, 2020 This has been my solution: .sqs-block-html a {border: none !important;} 🙂 Link to comment
jcsport123 Posted September 7, 2020 Share Posted September 7, 2020 @tuanphan How do I do this for my footer? https://www.elevateptr.com/. THANK YOU!!! Link to comment
tuanphan Posted September 8, 2020 Share Posted September 8, 2020 3 hours ago, jcsport123 said: @tuanphan How do I do this for my footer? https://www.elevateptr.com/. THANK YOU!!! Add to Home > Design > Custom CSS footer.sections * { text-decoration: none; background-image: none !important; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Guest Posted March 12, 2021 Share Posted March 12, 2021 Hi there. my website is professionalinsurorsokc.com and I have tried so many code options and can't figure out how to remove underlined links from my website. Link to comment
Notacoder Posted March 13, 2021 Share Posted March 13, 2021 Odd, something must have happened in SS because my footer hyperlink underlines have returned despite having this code in the Custom CSS: footer.sections a { background: none !important; } Any thoughts? Web page: https://www.cyclebeatclub.com Link to comment
jonbessant Posted March 14, 2021 Share Posted March 14, 2021 I have exactly the same problem during the last 24 hours. Any help will be greatly appreciated. Thank you Jon Link to comment
StoriesAroundTheSun Posted March 18, 2021 Share Posted March 18, 2021 (edited) On 3/14/2021 at 1:58 PM, jonbessant said: I have exactly the same problem during the last 24 hours. Any help will be greatly appreciated. Thank you Jon UPDATE: I heard back from Squarespace support: "I can confirm there are no known issues on 7.1 footers on our end that would be relevant to this issue. Based on what you're experiencing and the posts in the forum, it is likely that a recent update to the platform has prevented a custom coded modification from working as it has previously." So hopefully someone wiser than me can figure out the new code for removing underlines from the footer 🤞 Using 7.1 - Same here across all my sites - it is weird, because when I go to add/update the custom CSS code, the underlining in the footer goes away, but as soon as I save, exit the Design tab, and refresh the underlines return to the footer. Here is the code I have been using: // Remove underline for all links on site // a { background-image: none !important; } // Remove underline for links in footer // footer.sections * { text-decoration: none; background-image: none !important; } Is this is a code issue or a Squarespace glitch? Thanks! Edited March 18, 2021 by StoriesAroundTheSun update from Squarespace support Link to comment
creedon Posted March 18, 2021 Share Posted March 18, 2021 @StoriesAroundTheSun It could be an SS glitch as of several days back many people reported undesirable underline issues. However people in the last couple of days people started reporting that the underline issue was going away. I.e. SS fixed that issue. Now that doesn't mean that SS hasn't changed the way they handled their underline effect. So what we would need is to see your site and specifically a URL where undesirable underline issues are happening. Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects. Link to comment
StoriesAroundTheSun Posted March 18, 2021 Share Posted March 18, 2021 @creedon thanks for responding ☀️ One site I'm seeing it on is www.amytangerine.com - just in the footer. The other sites are currently in build-mode. I heard back from Squarespace support and they can't see a glitch on their end that would be continuing to cause it at this time. Sunshine! Ella Link to comment
creedon Posted March 18, 2021 Share Posted March 18, 2021 @StoriesAroundTheSun ??? Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects. Link to comment
creedon Posted March 18, 2021 Share Posted March 18, 2021 @StoriesAroundTheSun Add the following to Design > Custom CSS. #footer-sections .sqs-block-html a { text-decoration : unset; } This is for v7.1. Let us know how it goes. amyhalvorsen, ElizabethM, tuanphan and 1 other 4 Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects. Link to comment
ElizabethM Posted March 22, 2021 Share Posted March 22, 2021 Hi @creedon Just try your line code for v7.1 and it works ! Thank you so much creedon 1 Link to comment
Notacoder Posted March 23, 2021 Share Posted March 23, 2021 Thank you @creedon That is the ticket for my v7.1, whoo hoo! creedon 1 Link to comment
StoriesAroundTheSun Posted April 2, 2021 Share Posted April 2, 2021 @creedon you are the BEST! Thank you - worked like a charm ☀️🙌 appreciate you taking the time to respond. I'm not sure what the issue was with the site not loading - my client does a lot of the day to day work on the site herself. thankfully it seems to be behaving today! Thanks for bringing it to my attention, and I'll do a check in on it over the next few days just in case. creedon 1 Link to comment
jtspidercool Posted July 7, 2023 Share Posted July 7, 2023 Help! I have tried loads of CSS for this and they do not seem to work now, anyone know what works now in 2023? Thanks so much!! Link to comment
creedon Posted July 7, 2023 Share Posted July 7, 2023 4 hours ago, jtspidercool said: I have tried loads of CSS for this and they do not seem to work Please post the URL for a page on your site where we can see your issue. A link to the backend of the your site won’t work for us, i.e. a url that contains /config/. Please set up a site-wide password, if your site is not public and you've not already done so. Post the password here. Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site. Please read the site-wide password and how to share a link documentation to understand how they work. We can then take a look at your issue. You may find How to post a forum question post useful. Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects. Link to comment
Anthony_M Posted July 12, 2023 Share Posted July 12, 2023 Hi @creedon, I have the same problem + title shrinks down when windows enlarged. https://www.anthonymartin.fr/ Can you please help me delete link underline and font size issue ? Thank you very much. Anthony Link to comment
creedon Posted July 12, 2023 Share Posted July 12, 2023 10 hours ago, Anthony_M said: please help me delete link underline and font size issue Add the following to Design > Custom CSS. @supports ( text-decoration-thickness : 1px ) and ( text-underline-offset : 0.2em ) { .sqs-block-html a { text-decoration-line : unset; } } @media screen and ( min-width : 1872px ) { h2 { font-size : 80px; } } Let us know how it goes. tuanphan 1 Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects. Link to comment
Civic Posted December 4, 2023 Share Posted December 4, 2023 This code is working good for me. footer.sections * { text-decoration: none !important; background-image: none !important; } footer.sections a *:hover { color:red !important; } 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