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
Hello! @JoyDion Please follow these steps to add this CSS code:
1. Go to your Online Store
2. Click on "Themes"
3. Select "Edit code"
4. Open your CSS file. If you have a custom CSS file, open that instead.
5. If you can't find your custom CSS file, open "base.css"
6. Add the following code at the end of the file.
@media screen and (max-width: 749px) {
.banner__box {
padding: 2rem 1.5rem;
}
}
Let me know if you need further assistance.
Hi! Thank you for replying! After adding the css code I tried viewing on a phone with bigger screen (Iphone 12 max) the image size is properly resized however when I viewed it on a smaller screen (Iphone 10s) the image is still slightly cropped.
Hello! @JoyDion Please add this CSS code Also Below of the Above Code
@media screen and (max-width: 450px) {
.banner__box {
padding: 0;
}
}