Rounded corners for the footer in Refresh Theme

I’m attempting to achieve rounded corners for the footer, similar to what’s shown in the attached screenshot. I’m just looking to round the top two corners..
Theme name: Refresh
Shop address: https://sk8ology23.myshopify.com/
Password: uskian

Thank you in advance

1 Like

Hi @technase

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
footer.footer.color-inverse.gradient.section-sections--20493793493303__footer-padding {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

Result:

" :glowing_star: Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! :raising_hands: "

Hi @technase

This is Noah from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the 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


Here’s how its look on my end:

Hope this can help you solve the issue

Best regards,

Noah | PageFly

Hello @technase ,

You can try to follow these steps:

Go to Online Store → Themes → Actions → Edit code

Go to Assets folder → base.css file or theme.scss.liquid file

Add this following code at the bottom of page

.footer {
    border-radius: 10px;
    overflow: hidden;
}

Save and preview

Hope this can help.

Transcy

Hello @technase

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.footer:not(.color-background-1) {
    border-radius: 25px !important;
}