Jump to content

Taking away underlining on button i added on nav

Recommended Posts

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%;
}
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!
Link to comment
  • Replies 6
  • Created
  • Last Reply

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.

About: SQSP User for 17 yrs. Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥.
Work: Founder of SF Digital, building Squarespace Extensions to supercharge your commerce website. 
Content: Links in my posts may refer to SF Digital products or may be affiliate links.
If my advice helped, you can thank me by clicking one of the feedback emojis below. I love coffee too.

Link to comment
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

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
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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.