Moving an image in the footer a little closer to the brand information

Solved

Moving an image in the footer a little closer to the brand information

lorealpm
Visitor
3 0 0

Hi.

 

I'm kinda new to Shopify web design so I'd appreciate some suggestions on my problem. I'm trying to add a second logo to the footer and I'd want to move it right under the brand information column. I'm using the Dawn theme.

 

The only current CSS on the footer is this:

 

{
  .footer__content-top .footer-block.grid__item {
    width: 20% !important;
  }
}

 

Screenshot 2024-06-21 120037.png

Accepted Solution (1)
niraj_patel
Shopify Partner
2391 516 515

This is an accepted solution.

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (min-width: 750px) {
.footer__content-top .grid {
row-gap: 0rem !important;
}
}
</style>
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

 

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

View solution in original post

Replies 4 (4)

niraj_patel
Shopify Partner
2391 516 515

Hello @lorealpm 
Can you share store URL?

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com
lorealpm
Visitor
3 0 0
niraj_patel
Shopify Partner
2391 516 515

This is an accepted solution.

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (min-width: 750px) {
.footer__content-top .grid {
row-gap: 0rem !important;
}
}
</style>
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

 

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com
lorealpm
Visitor
3 0 0

@niraj_patel this worked! Thank you so much!