Jump to content

Need help fixing navigation link spacing

Recommended Posts

I need help making the spacing of the navigation links to the right of the logo to be spaced the same as the ones to the left of it. The ones on the right got squished together so need to space them out to be like the left. Please refer to the photos, thank you!

Screen Shot 2022-12-07 at 9.22.52 PM.png

Link to comment
  • Replies 12
  • Views 449
  • Created
  • Last Reply

Top Posters In This Topic

12 hours ago, EJ119 said:

I need help making the spacing of the navigation links to the right of the logo to be spaced the same as the ones to the left of it. The ones on the right got squished together so need to space them out to be like the left. Please refer to the photos, thank you!

Screen Shot 2022-12-07 at 9.22.52 PM.png

Can you share your URL site (with the protected password if you have) so I can take a look?

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 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

You can try adding to Home > Design > Custom Css

.header-nav-item.header-nav-item--collection {
  margin-right: 20px;
}

 

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 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

Have you tried adding my above code yet?

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 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

I can not find my code your site. Can you take screenshot where you apply my code on?

image.thumb.png.59119a53c67ffa7dd1f0c865fb076f25.png

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 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
On 12/9/2022 at 10:19 PM, EJ119 said:

It should be on now

Your CSS box has a syntax error so all (or some) CSS won't work.

If you look at right bottom corner, you will see a red notice.

If you can't fix this, just send all CSS code, we can help you easier

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

.header-actions .header-nav-item {
  padding-right:2.1w !important; /**change as needed**/

}

.header-nav-list   {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:end !important;
      -ms-flex-pack:end !important;
          justify-content:flex-end !important;
  .header-nav-item {
     padding-right:2.1vw !important; /**change as needed**/
  }
}

.header-actions--right {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:justify;
      -ms-flex-pack:justify;
          justify-content:space-between;
}

.header-actions .header-nav-item {
  padding-right:2.1vw !important;//change as needed

}

.header-nav-list   {
  display:flex;
  justify-content:flex-end !important;
  .header-nav-item {
     padding-right:2.1vw !important; //change as needed
  }
}

.header-actions--right {
  display:flex;
  justify-content:space-between;
}

.header-display-mobile .header-nav-item.header-nav-item--collection {
display:none;
}

/* Home transparent */
body.homepage .header-announcement-bar-wrapper, body.homepage header#header {
    background: transparent !important;
}

h3 a:hover {
    color: #cd7e3c !important;
}

section[data-section-id="630039bc9470670078eb1643"]     {
  border-top: 1px solid #000;
}

[data-section-id="5e4c4bfc089b191d4a53fa73"] { padding-top: 0 !important; }

/* Home nav items */
body.homepage div.header-nav-item a {
    color: white !important;
}

// Navigation Links Spacing //

.header-nav-item a {
  margin: 0px 2px !important;
}
https://static1.squarespace.com/static/5e4c49786776b00f34b723a5/t/639135c8f3a6940a6ecddad1/1670460872379/Sullivan_Logo-07+(1).png
[data-section-id="5e73d711f1221176fcfd4730"] .content-wrapper {
    padding-top: calc(~"10vmax / 5") !important;
}
.header-nav-item.header-nav-item--collection {
  margin-right: 20px;
}

Link to comment
On 12/12/2022 at 1:04 AM, EJ119 said:

.header-actions .header-nav-item {
  padding-right:2.1w !important; /**change as needed**/

}

.header-nav-list   {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:end !important;
      -ms-flex-pack:end !important;
          justify-content:flex-end !important;
  .header-nav-item {
     padding-right:2.1vw !important; /**change as needed**/
  }
}

.header-actions--right {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:justify;
      -ms-flex-pack:justify;
          justify-content:space-between;
}

.header-actions .header-nav-item {
  padding-right:2.1vw !important;//change as needed

}

.header-nav-list   {
  display:flex;
  justify-content:flex-end !important;
  .header-nav-item {
     padding-right:2.1vw !important; //change as needed
  }
}

.header-actions--right {
  display:flex;
  justify-content:space-between;
}

.header-display-mobile .header-nav-item.header-nav-item--collection {
display:none;
}

/* Home transparent */
body.homepage .header-announcement-bar-wrapper, body.homepage header#header {
    background: transparent !important;
}

h3 a:hover {
    color: #cd7e3c !important;
}

section[data-section-id="630039bc9470670078eb1643"]     {
  border-top: 1px solid #000;
}

[data-section-id="5e4c4bfc089b191d4a53fa73"] { padding-top: 0 !important; }

/* Home nav items */
body.homepage div.header-nav-item a {
    color: white !important;
}

// Navigation Links Spacing //

.header-nav-item a {
  margin: 0px 2px !important;
}
https://static1.squarespace.com/static/5e4c49786776b00f34b723a5/t/639135c8f3a6940a6ecddad1/1670460872379/Sullivan_Logo-07+(1).png
[data-section-id="5e73d711f1221176fcfd4730"] .content-wrapper {
    padding-top: calc(~"10vmax / 5") !important;
}
.header-nav-item.header-nav-item--collection {
  margin-right: 20px;
}

Remove this image url

image.thumb.png.9e84ff541cc5d98065922c0dbce80a51.png

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

Create an account or sign in to comment

You need to be a member in order to leave a comment


×
×
  • 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.