surf2023 Posted August 28, 2023 Share Posted August 28, 2023 Hello! It is possible to custom in the CSS an hyperlink on page and have it hover and not underline? Thank you! Jacky Link to comment
Lesum Posted August 28, 2023 Share Posted August 28, 2023 @surf2023 Were you aiming to have the underline appear only on hover? If so, here's a code snippet that will achieve this effect: a { text-decoration: none !important; } a:hover { text-decoration: underline !important; } header a { background-image: none !important; } header a:hover { text-decoration: underline !important; } If my comments were useful, please like or mark my solution as answer so others can scroll to it quickly. Sam Web Developer & Digital Designer ☕ Did you find my contribution helpful? Buy me a coffee? Link to comment
surf2023 Posted August 28, 2023 Author Share Posted August 28, 2023 Thank you ! But do there is a way to apply to only one page of the website? Link to comment
Solution Lesum Posted August 28, 2023 Solution Share Posted August 28, 2023 @surf2023 Yes, you just have to add the page collection id before the header & a tag on the code. If my comments were useful, please like or mark my solution as answer so others can scroll to it quickly. Sam Web Developer & Digital Designer ☕ Did you find my contribution helpful? Buy me a coffee? 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