Fooer menu first item not aligned - dawn theme

Solved

Fooer menu first item not aligned - dawn theme

blublu
Excursionist
19 1 12

My footer menu in my dawn theme will not align the first element with others, also it isn't centered on the page (horizontally)

 

https://blublu.ca/password

Password is : saghoo

Accepted Solutions (4)

BSSCommerce-B2B
Shopify Partner
1972 564 566

This is an accepted solution.

@blublu ,

Step 1. Go to Admin -> Online store -> Theme > Edit code

Step 2. Find the file theme.liquid.

Step 3. Add this code above </body>

<style>
@media screen and (min-width: 750px) {
    .footer-block__details-content>:first-child .list-menu__item--link {
        padding-top: 0.5rem!important;
    }
}
</style>

Result:

BSSCommerceB2B_0-1725374624528.png

 

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

View solution in original post

Made4uo-Ribe
Shopify Partner
10036 2385 3012

This is an accepted solution.

Hi @blublu 

There is a code to prevent it not aligning.

Check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

@media screen and (min-width: 750px) {
    .footer-block__details-content>:first-child .list-menu__item--link {
        padding-top: .5rem !important;
    }
}

 

And Save. 

result:

Made4uoRibe_0-1725375409568.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

blublu
Excursionist
19 1 12

This is an accepted solution.

Works!!! Great!!  Now on mobile the menu is all stacked tough instead of nicely aligned.

 

View solution in original post

BSSCommerce-B2B
Shopify Partner
1972 564 566

This is an accepted solution.

@blublu , if you want this on mobile

BSSCommerceB2B_0-1725461574240.png

Please change the previous code like this

<style>
.footer-block__details-content .list-menu__item--link {
    padding-top: 0.5rem !important;
}
@media only screen and (max-width: 768px) {
.footer-block--menu .footer-block__details-content {
  flex-direction: column;
}
</style>

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

View solution in original post

Replies 12 (12)

BSSCommerce-HDL
Shopify Partner
2305 835 907

Hi @blublu,

Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above </head> tag:

<style>
.footer-block__details-content .list-menu__item--link {
    padding-top: 0.5rem !important;
}
</style>

Here is result :

BSSCommerceHDL_0-1725373702106.png

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

blublu
Excursionist
19 1 12

It isn't working, the footer menu's first item is still higher. Would it work if I deleted the menu item and created it anew?

BSSCommerce-HDL
Shopify Partner
2305 835 907

@blublu, I think it's ok

BSSCommerceHDL_0-1725379045630.png

 



Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

blublu
Excursionist
19 1 12

Thank you!! Now on mobile the menu is all stacked tough instead of nicely aligned.

BSSCommerce-B2B
Shopify Partner
1972 564 566

This is an accepted solution.

@blublu , if you want this on mobile

BSSCommerceB2B_0-1725461574240.png

Please change the previous code like this

<style>
.footer-block__details-content .list-menu__item--link {
    padding-top: 0.5rem !important;
}
@media only screen and (max-width: 768px) {
.footer-block--menu .footer-block__details-content {
  flex-direction: column;
}
</style>

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

blublu
Excursionist
19 1 12

<style>
@media screen and (min-width: 750px) {
.footer-block__details-content>:first-child .list-menu__item--link {
padding-top: 0.5rem!important;

}
}

 

Here is what I have now and it works.  But the menu is now left aligned... I tried adding this right after:

.footer {
    text-align: center;
}


</style>

 

didn't work..

BSSCommerce-HDL
Shopify Partner
2305 835 907

Hi @blublu

Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above </head> tag:

<style>
.footer-block.grid__item.footer-block--menu ul {
    justify-content: center !important;
}
</style>

Here is result: 

BSSCommerceHDL_0-1726065425235.png

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you  😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

blublu
Excursionist
19 1 12

So here is what chatgpt helped me do and it worked!!

 

<style> @media screen and (min-width: 750px) { .footer-block__details-content { display: flex; justify-content: center; /* Centers the menu horizontally */ align-items: center; /* Vertically centers the items (if needed) */ } .footer-block__details-content>:first-child .list-menu__item--link { padding-top: 0.5rem!important; } } </style>

BSSCommerce-B2B
Shopify Partner
1972 564 566

This is an accepted solution.

@blublu ,

Step 1. Go to Admin -> Online store -> Theme > Edit code

Step 2. Find the file theme.liquid.

Step 3. Add this code above </body>

<style>
@media screen and (min-width: 750px) {
    .footer-block__details-content>:first-child .list-menu__item--link {
        padding-top: 0.5rem!important;
    }
}
</style>

Result:

BSSCommerceB2B_0-1725374624528.png

 

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

blublu
Excursionist
19 1 12

This is an accepted solution.

Works!!! Great!!  Now on mobile the menu is all stacked tough instead of nicely aligned.

 

blublu
Excursionist
19 1 12

Now on mobile the menu is all stacked tough instead of nicely aligned. Can you help me please?

Made4uo-Ribe
Shopify Partner
10036 2385 3012

This is an accepted solution.

Hi @blublu 

There is a code to prevent it not aligning.

Check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

@media screen and (min-width: 750px) {
    .footer-block__details-content>:first-child .list-menu__item--link {
        padding-top: .5rem !important;
    }
}

 

And Save. 

result:

Made4uoRibe_0-1725375409568.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.