All things Shopify and commerce
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
hi there i have a store a applied picture background background is visible on mobile but its not showing on desktop my url is https://sundip1.myshopify.com/
Solved! Go to the solution
This is an accepted solution.
remove above code and add below code
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>
body#sundip1 {
background-image: url(https://cdn.shopify.com/s/files/1/0909/7229/1354/files/Untitled_design_10_1.png?v=1733295500) !important;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
</style>
RESULT:
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Hello @BDPK
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>
body{
background-image: url('your-image-url.jpg') !important; /* Replace with your image URL */
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
</style>
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
on refreshin background just flick and vanished away
This is an accepted solution.
remove above code and add below code
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>
body#sundip1 {
background-image: url(https://cdn.shopify.com/s/files/1/0909/7229/1354/files/Untitled_design_10_1.png?v=1733295500) !important;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
</style>
RESULT:
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
HI @BDPK
div#PageContainer {
background: background: url("https://cdn.shopify.com/s/files/1/0909/7229/1354/files/Untitled_design_10_1.png?v=1733295500") center;
background-size: contain;
}