Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
I have placed a image in the Footer section but when looking at the site on a Mobile Phone, the photo seems to duplicate at bottom as like it repeats. How do I fix this.
Site is - https://kiburi-lifestyle.myshopify.com/
You must add this code to theme.liquid file, after <head> to solve this issue
<style>
@media (max-width: 749px) {
.footer {
background-repeat: no-repeat;
background-size: cover;
}
}
</style>
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- 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 buddy, your awesome 🙂 Fixed. Thanks man appreciate your help 🙂
Very welcome 😊
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Hello @kiburi-lifestyl
Please paste the code where you have added this image;
<style>
.footer {
background image: url("https://cdn.shopify.com/s/files/1/0539/6735/6095/files/Headerkl.jpg?v=1718342534") !important;
background-repeat: no-repeat;
background-size: cover;
}
</style>
Your image will cover the whole space in the footer.
Thanks