Solved

Code for adding space between logos in top navigation

dwellcbd
Visitor
2 0 1

I am looking to add a small space in between the SPORT and SKIN logos in the top navigation of this website: https://dwellcbd.com/ what would be the code for that?

Accepted Solution (1)

Nick_Marketing
Shopify Partner
1487 336 464

This is an accepted solution.

Try adding this rule to the bottom of theme.scss.css

.right-logo a:nth-child(2) {
  margin-left: 10px;
}
Nick | Ecommerce & Marketing Technology Consultant | Toronto, CANADA
- For consulting work availability, please send me a Private Message or submit a ✍️Contact Form.
- For FREE Shopify Tutorials, Subscribe to my YouTube channel (▶️ Ecommerce TV).

View solution in original post

Replies 2 (2)

Nick_Marketing
Shopify Partner
1487 336 464

This is an accepted solution.

Try adding this rule to the bottom of theme.scss.css

.right-logo a:nth-child(2) {
  margin-left: 10px;
}
Nick | Ecommerce & Marketing Technology Consultant | Toronto, CANADA
- For consulting work availability, please send me a Private Message or submit a ✍️Contact Form.
- For FREE Shopify Tutorials, Subscribe to my YouTube channel (▶️ Ecommerce TV).
dwellcbd
Visitor
2 0 1

It worked, perfectly, thank you!!