Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Footer text font size smaller and mobile footer smaller (dawn theme)

Solved

Footer text font size smaller and mobile footer smaller (dawn theme)

CarCleanCC
Tourist
16 0 0

Hello,

 

I would like to make my footer more compact.

Currently, I’m using the Dawn theme on my website, carcleansweden.se, and I’m struggling to achieve this specific layout.

 

This is my current footer:

CarCleanCC_1-1731081189997.png

 

My goals are to make my footer more similar to the example shown in the image.

CarCleanCC_0-1731081109358.png

 

Could you please guide me on how to achieve this? Specifically, any CSS code or theme adjustments that would help me replicate this style in the Dawn theme would be appreciated.

Thank you in advance!

 

Accepted Solution (1)

DaisyVo
Shopify Partner
840 107 124

This is an accepted solution.

Hi @CarCleanCC 

 

To complete your requests, please follow these steps:
  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.

 

@media screen and (max-width: 768px){
.footer__content-top > .footer__blocks-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
}
.footer__content-top > .footer__blocks-wrapper > div {
    margin: 0 !important;
}
}

 

 

Here is the result: https://prnt.sc/qTkS2ZQ4QzxU
 
I hope this helps
 
Best,
 
Daisy

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution

View solution in original post

Replies 2 (2)

namphan
Shopify Partner
1906 247 274

Hi @CarCleanCC,

Please go to Actions > Edit code > Assets > base.css file and paste this at the bottom of the file:

@media screen and (max-width: 749px) {
    .footer__blocks-wrapper.grid {
        display: flex !important;
    }
    .footer__blocks-wrapper.grid .footer-block.grid__item {
        width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
        margin-top: 0;
    }
}
Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com

DaisyVo
Shopify Partner
840 107 124

This is an accepted solution.

Hi @CarCleanCC 

 

To complete your requests, please follow these steps:
  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.

 

@media screen and (max-width: 768px){
.footer__content-top > .footer__blocks-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
}
.footer__content-top > .footer__blocks-wrapper > div {
    margin: 0 !important;
}
}

 

 

Here is the result: https://prnt.sc/qTkS2ZQ4QzxU
 
I hope this helps
 
Best,
 
Daisy

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution