Re: How can I make corner in grid banners more rounded

Solved

How can I make corner in grid banners more rounded

Aleksander22
Explorer
164 0 57

Hi,

I got quick question about rounding corners in grid banners how can I make it. Becuse I got no idea.

IMG_1336.jpeg

Accepted Solutions (2)

niraj_patel
Shopify Partner
2378 514 511

This is an accepted solution.

Hello @Aleksander22 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>

@media screen and (max-width:767px){
  .imgBnrOuter .inner {
     border-radius: 19px;
  }

}
</style>

niraj_patel_0-1725112241398.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- [email protected]

View solution in original post

Kaushik_7
Explorer
57 45 47

This is an accepted solution.

Hello! @Aleksander22 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 theme.css
6. Add the following code at the end of the file.

 

 

@media screen and (max-width:767px){
body .imgBnrOuter .inner img {
    border-radius: 10px;
}
}

 

 

Kaushik_7_0-1725112417202.png

 


 If you need further assistance, please let me know. If you found my help useful, consider liking this message and marking it as the solution.
Best regards
Kaushik

View solution in original post

Replies 2 (2)

niraj_patel
Shopify Partner
2378 514 511

This is an accepted solution.

Hello @Aleksander22 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>

@media screen and (max-width:767px){
  .imgBnrOuter .inner {
     border-radius: 19px;
  }

}
</style>

niraj_patel_0-1725112241398.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- [email protected]

Kaushik_7
Explorer
57 45 47

This is an accepted solution.

Hello! @Aleksander22 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 theme.css
6. Add the following code at the end of the file.

 

 

@media screen and (max-width:767px){
body .imgBnrOuter .inner img {
    border-radius: 10px;
}
}

 

 

Kaushik_7_0-1725112417202.png

 


 If you need further assistance, please let me know. If you found my help useful, consider liking this message and marking it as the solution.
Best regards
Kaushik