Change image banners width to 95% and border radius 30px Dawn theme

Hi, I would like to make the image banners as a box with some margin on the sides (95% width) and a curved corners.

How can I make that?

website: 1989streetwear.com

pw: bet1989

Hi @1989streetwear ,

This is Richard from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/section-image-banner.css->paste below code at the bottom of the file:

.image-banner-section {
    padding: 0 50px;
}
.image-banner-section .banner {
    border-radius: 30px;
    overflow: hidden;
}
@media screen and (max-width: 749px) {
    .image-banner-section {
        padding: 0 20px;
    }
}

I hope it would help you
Best regards,

Richard | PageFly

1 Like