How can I round corners on the Venture Theme?

Hi @hangdaniberia
Okay, There are simple changes on the CSS code

If you check the code Here you will find that there are border-radius: 100px 0 0 100px; in the selector nth-child(2n+1) you have to replace it with border-radius: 50px; Same goes to nth-child(2n) you have to replace it with border-radius: 50px; in theme.scss.css

For the new section you have added on the page add below CSS

.shopify-section .grid .grid__item a div {
    border-radius: 50px;
}

.section-block.section-block--padding {
    border-radius: 50px;
}

Hello @Huptech-Web

perfect, this looks nice.

Thanks for the support, now it looks like I want to.

Best regards

1 Like