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 want to change the background color of website to a image like artwork
can we do that in the shopify ride theme
Solved! Go to the solution
This is an accepted solution.
Hi @Flowbliss ,
This is Theodore from PageFly - Shopify Page Builder App.
For solving the problem about the Changing The Background Color To Image, let’s try this solution:
Online Store ->Theme ->Edit code
Assets ->Base.css
body{
background-image: url(' url image') !important;
}
I’ll be so happy if my suggestion can help to solve your problem. If you have any further questions, please feel free to tell me.
Best regards,
Theodore | PageFly
Please let me know if it works by giving it a Like or marking it as a solution!
PageFly - #1 Page Builder for Shopify merchants.
All features are available from Free plan. Live Chat Support is available 24/7.
Hi @Flowbliss
Go to your Online store > Themes > Edit code > open theme.liquid file, add this code before </head> tag
<style>
background-image: url('https://community.shopify.com/c/image/serverpage/image-id/384195iC43444769C8AE019/image-size/large') !important;
</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.
This is an accepted solution.
Hi @Flowbliss ,
This is Theodore from PageFly - Shopify Page Builder App.
For solving the problem about the Changing The Background Color To Image, let’s try this solution:
Online Store ->Theme ->Edit code
Assets ->Base.css
body{
background-image: url(' url image') !important;
}
I’ll be so happy if my suggestion can help to solve your problem. If you have any further questions, please feel free to tell me.
Best regards,
Theodore | PageFly
Please let me know if it works by giving it a Like or marking it as a solution!
PageFly - #1 Page Builder for Shopify merchants.
All features are available from Free plan. Live Chat Support is available 24/7.
Hi @Flowbliss
Check this one.
body {
background-image: url('path/to/your/image.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!