oskarfishwick Posted January 17, 2020 Posted January 17, 2020 Hello, I have added a underline when i hover over my menu items. The code being .Header-nav-item::after { content: ''; background: #000; height: 2px; width: 0; display: block; margin-top: 2px !important; transition: width 1s; margin: 0 auto; } .Header-nav-item:hover::after { width: 100%; } Coming from https://thirtyeightvisuals.com/blog/hover-mode-menu-items But as i have made my last item on the nav as a button, i dont want the underlining to appear when i hover on that. Could someone give me a code to exclude this button from the underlining. Thank you!
paul2009 Posted January 17, 2020 Posted January 17, 2020 You've forgotten to include a working link to your site. To help, we need to see the issue first hand. If the site isn't live, we need you to set a password in the visibility settings and tell us what it is. Me: I'm Paul, a SQSP user for >18 yrs & Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF.DIGITAL. We provide high quality original extensions to supercharge your Squarespace website. Content: Views and opinions are my own. Links in my posts may refer to my own SF.DIGITAL products or may be affiliate links. Forum advice is completely free. You can thank me by selecting a feedback emoji. Buying a coffee is generous but optional.
oskarfishwick Posted January 17, 2020 Author Posted January 17, 2020 Oh im sorry. www.imexgolvprodukter.squarespace.com pssword: 3302
tuanphan Posted January 21, 2020 Posted January 21, 2020 On 1/17/2020 at 6:17 PM, oskarfishwick said: Oh im sorry. www.imexgolvprodukter.squarespace.com pssword: 3302 I see you fixed? 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!)
tuanphan Posted January 28, 2020 Posted January 28, 2020 On 1/27/2020 at 1:51 PM, oskarfishwick said: No its not fixed. your code .Header-nav-item::after { content: ''; background: #000; height: 2px; width: 0; display: block; margin-top: 2px !important; transition: width 1s; margin: 0 auto; } .Header-nav-item:hover::after { width: 100%; } change it to .Header-nav-item:not(:last-child)::after { content: ''; background: #000; height: 2px; width: 0; display: block; margin-top: 2px !important; transition: width 1s; margin: 0 auto } .Header-nav-item:not(:last-child):hover::after { width: 100% } 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!)
Recommended Posts
Archived
This topic is now archived and is closed to further replies.