A space to discuss online store customization, theme development, and Liquid templating.
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/
Solved! Go to the solution
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>
- 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.
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>
- 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.
Thanks a lot!