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
As you can see below the image is not displaying completed.
This is the custom code used to insert the image.
.header {
background-image: url(https://cdn.shopify.com/s/files/1/0814/0282/2984/files/header1.png?v=1710226490);
}
@media (min-width: 990px) {
.header {
padding-top: 0px;
padding-bottom: 0px;
max-width: 100%;
padding-left: 3px;
padding-right: 3px;
}
}
Solved! Go to the solution
This is an accepted solution.
Hi @Kai47
Try this code.
.header {
background-image: url(https://cdn.shopify.com/s/files/1/0814/0282/2984/files/header1.png?v=1710226490);
background-size: cover; /* or background-size: contain; */
}
@media (min-width: 990px) {
.header {
padding-top: 0px;
padding-bottom: 0px;
max-width: 100%;
padding-left: 3px;
padding-right: 3px;
}
}
Hey @Kai47
Can you share the link to your store please? Thanks!
And password if any or you can remove the password temporarily
This is an accepted solution.
Hi @Kai47
Try this code.
.header {
background-image: url(https://cdn.shopify.com/s/files/1/0814/0282/2984/files/header1.png?v=1710226490);
background-size: cover; /* or background-size: contain; */
}
@media (min-width: 990px) {
.header {
padding-top: 0px;
padding-bottom: 0px;
max-width: 100%;
padding-left: 3px;
padding-right: 3px;
}
}
THANK YOU SO MUCH!. Works like a charm
Hi @Kai47
You're welcome! I'm glad to hear that it worked like a charm for you! If you have any more questions or need further assistance, feel free to ask.