Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

How can i center my brand information and my brand logo in the footer for mobile?

Solved

How can i center my brand information and my brand logo in the footer for mobile?

nickb4
Visitor
2 0 0

Hi there, I use the dawn theme and i've been trying to find a solution for my problem for a long time but i can't do it myself.  I would love to know how i can center my brand information and especially my brand logo in the footer for mobile users. This is the store url: https://www.onlinebabyparadise.com/

Accepted Solution (1)

Dan-From-Ryviu
Shopify Partner
10712 2118 2237

This is an accepted solution.

Hi @nickb4 

Dan here from Ryviu: Product Reviews & QA app.

Please add this code to your theme.liquid file, after <head> and save file 

<style>
@media (max-width: 749px) {
.footer-block__brand-info {
text-align: center !important;
}
.footer-block__brand-info .footer-block__image-wrapper {
margin: 20px auto;
}
}
</style>

Screenshot 2024-03-07 at 11.14.05.png

- Helpful? Like and Accept solution! Or Support me: Buy Me Coffee ❤️
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

View solution in original post

Replies 2 (2)

Dan-From-Ryviu
Shopify Partner
10712 2118 2237

This is an accepted solution.

Hi @nickb4 

Dan here from Ryviu: Product Reviews & QA app.

Please add this code to your theme.liquid file, after <head> and save file 

<style>
@media (max-width: 749px) {
.footer-block__brand-info {
text-align: center !important;
}
.footer-block__brand-info .footer-block__image-wrapper {
margin: 20px auto;
}
}
</style>

Screenshot 2024-03-07 at 11.14.05.png

- Helpful? Like and Accept solution! Or Support me: Buy Me Coffee ❤️
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

nickb4
Visitor
2 0 0

Thanks a lot!