How can I lower a section divider that overlaps a button?

Hi,

after some changes on my theme, this section divider is going through button “Read It”.

How to move it little bit more down so it goes under button?

Web: https://nexaco.co/

1 Like

HI @Rupert22

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:

@media only screen and (max-width: 768px){
div#shopify-section-footer {
    padding-top: 20px;
}
}

And Save.

Result:

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

1 Like