Dawn Theme Footer menu alignment issue

Solved

Dawn Theme Footer menu alignment issue

segevpeleg
Visitor
2 0 3

Hi guys.
I tried to set up a menu in my footer section but the last page seems to be aligned out of the menu as you can see in the picture -

 

segevpeleg_1-1743361901511.png

Tried to fix it using custom CSS and adding some code to base.css page without success.
Any clues?
Thank you!

Accepted Solution (1)
CafeDelMar
Shopify Partner
163 36 46

This is an accepted solution.

@segevpeleg, here's how to achieve that:


1. Navigate to Sales Channels → Online Store → "Customize" button → Theme settings (Gear icon on the left sidebar) → Custom CSS
2. Add the following code:

@media screen and (min-width: 750px) {
	footer .footer-block__details-content li {
		margin-right: 1.5rem !important;
	}
}

3. Save (right top corner)
4. Hard refresh the storefront

 

If done correctly, the result should be like this:

Screenshot_2.png

 

➡➡   Easy Embed Code   ⬅⬅ add CSS/JS/Liquid codes to any page of your store



Speed Booster App - Improve your store speed in 3 clicks
- Was your question answered? Mark it as an Accepted Solution

View solution in original post

Replies 4 (4)

CafeDelMar
Shopify Partner
163 36 46

Hi @segevpeleg. Welcome to the Shopify community!

 

Could you share the website URL? It would be much easier to debug and solve this. If it's password-protected, a password would be needed too.

➡➡   Easy Embed Code   ⬅⬅ add CSS/JS/Liquid codes to any page of your store



Speed Booster App - Improve your store speed in 3 clicks
- Was your question answered? Mark it as an Accepted Solution
segevpeleg
Visitor
2 0 3

Hi @CafeDelMar , website URL: smilekit.co.il , Password: 123123
Thanks 🙂

CafeDelMar
Shopify Partner
163 36 46

This is an accepted solution.

@segevpeleg, here's how to achieve that:


1. Navigate to Sales Channels → Online Store → "Customize" button → Theme settings (Gear icon on the left sidebar) → Custom CSS
2. Add the following code:

@media screen and (min-width: 750px) {
	footer .footer-block__details-content li {
		margin-right: 1.5rem !important;
	}
}

3. Save (right top corner)
4. Hard refresh the storefront

 

If done correctly, the result should be like this:

Screenshot_2.png

 

➡➡   Easy Embed Code   ⬅⬅ add CSS/JS/Liquid codes to any page of your store



Speed Booster App - Improve your store speed in 3 clicks
- Was your question answered? Mark it as an Accepted Solution

kayakakan
Shopify Partner
18 2 5

Hi, in your base.css replace the code you added with this:

.footer-block__details-content li:last-child {
  margin-right: 1.5rem;
}