How can I remove the grey space between the sections? Or how do I change it's colour?

Hello, I wanted to change the colour of the grey space between the sections, especially on the home page of my website. I tried some solutions mentioned here but they didn’t really work for my website. I have attached a screenshot of the website.

Hello @akanestudio
Can you share store URL?

https://akane-studio.com

Its currently password protected. the password is - test123

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 on theme.liquid

.section+.section { margin-top: unset !important; }

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

This has worked between some of the sections while others are still grey. I’m also sharing a screenshot. As you can see in the image, there is still some grey space on the top while the bottom is fixed. It’s similar between some other sections as well

Try this

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 on theme.liquid

.footer__content-bottom { border-top: solid .1rem rgb(253 249 245) !important; } .section+.section { margin-top: -2px !important; background: #fdf9f5 !important; margin-bottom: -2px !important; }

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

Hi @akanestudio

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

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:

.section+.section {
    margin-top: 0 !important;
    }
.slideshow__controls {
    border: 0 !important;
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Thank you! This worked out :sparkles: