Theme dawn. Add round corners to sections.

Theme dawn. Add round corners to sections.

Kroppi
Tourist
7 0 1

Hi,

I am wondering how to customise my sections: rich text/multicolumn/featured collection/Collage/image w text to rounded sections with a bit padding. Is there only way to get some custom code to my theme.liquid?

 

My shop: https://petstilius-lt1.myshopify.com/

Replies 4 (4)

PageFly-Victor
Shopify Partner
7865 1786 3131

Hi @Kroppi 

 

This is Victor from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the </head> to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the </head>

<style>
.multicolumn-card {
border-radius: 50px;
}

</style>

You need to add your code between the <style> tag

Hope this can help you solve the issue 

 

Best regards,

Victor | PageFly

Kroppi
Tourist
7 0 1

Hi,

 

and how can i do this to whole section? F.e.

#shopify-section-template--17697755201832__d1191bc2-1c3d-40c1-ac16-114e08ab7a01

 

Kroppi
Tourist
7 0 1

@PageFly-Victor hi, maybe you got some insights regarding my last question?

PageFly-Victor
Shopify Partner
7865 1786 3131

Sorry for the late response 

please use this code, with the same way above : 

<style>
#shopify-section-template--17697755201832__d1191bc2-1c3d-40c1-ac16-114e08ab7a01 {
border-radius: 50px;
}
</style>