Wynter711 Posted October 11, 2021 Share Posted October 11, 2021 Hi! I'm trying to change the text of my links when you hover over them; for example: Link reads "hohm" and when the cursor moves over it, it changes to "home" Link reads "uh-bout" and when the cursor moves over it, it changes to "about" I've seen custom CSS for changing link color but not actual text. Link to comment
Beyondspace Posted October 13, 2021 Share Posted October 13, 2021 On 10/12/2021 at 5:40 AM, Wynter711 said: Hi! I'm trying to change the text of my links when you hover over them; for example: Link reads "hohm" and when the cursor moves over it, it changes to "home" Link reads "uh-bout" and when the cursor moves over it, it changes to "about" I've seen custom CSS for changing link color but not actual text. Can you share your site with protected password to check the issue? BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox) 🗓️ Delivery Date Picker (Squarespace Date format) 💫 Animated Buttons (Referral URL) 🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations) 🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates) If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you! Link to comment
Wynter711 Posted October 13, 2021 Author Share Posted October 13, 2021 This is a portfolio project I'm working on for a University class - since other students and our professor need to access it I'm not allowed to password protect it. The links I'm trying to modify are in the header. https://www.wyntercannatelli.com/ Link to comment
tuanphan Posted October 15, 2021 Share Posted October 15, 2021 On 10/13/2021 at 7:43 PM, Wynter711 said: This is a portfolio project I'm working on for a University class - since other students and our professor need to access it I'm not allowed to password protect it. The links I'm trying to modify are in the header. https://www.wyntercannatelli.com/ Try adding this to Design > Custom CSS for first item div.header-nav-item:nth-child(1) a { position: relative; } div.header-nav-item:nth-child(1) a:before { content: "home"; font-size: calc((1.2 - 1) * 1.2vw + 1rem); position: absolute; opacity: 0; } div.header-nav-item:nth-child(1) a:hover:before { opacity:1 !important; visibility: visible; } div.header-nav-item:nth-child(1) a:hover { visibility:hidden; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
Wynter711 Posted October 15, 2021 Author Share Posted October 15, 2021 That worked! Thank you so so much! I tested it on the other links and they work as well. Really appreciate it. 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