I am using Brooklyn theme. On my Shipping policy page, I have a picture that is wide. How can I shrink the margins on just that page so the picture fits when people are looking at my shipping policy?
Hello @socali1984 Can you share the Store URL?
Hi @socali1984 ,
Please share your store URL and if your store is password protected then please provide password too.
So that we can help you.
Thank you.
If you click on the button on the bottom that says “Delivery Routes” it will take you to the shipping policy page where we have the information and you can see where the schedule is too narrow.
If you click on the button on the bottom that says “Delivery Routes” it will take you to the shipping policy page where we have the information and you can see where the schedule is too narrow.
@socali1984 put this css in timber.scss.css
.template-policy .wrapper { max-width: 1300px; }
.template-policy img {
width: 100%;
height: 100%;
}
@kazi_1 Put it where in timber.scss.css?
Very Bottom of the file
@kazi_1 is there anyway to make it larger? It was bigger but can I make the picture even larger?
@socali1984 add this css too
.shopify-policy__container {
max-width: 100%;
}
@kazi_1 the pictures still aren’t the full width of the webpage. I will need to think of something else.
@socali1984 update the css with this
.shopify-policy__container {
max-width: 100% !important;
}