How can I lower the 'shop now' button on the Debut front page?

Hello, I’d like to know how to move down the shop down button on the front page of Debut. I’ve seen many people saying to paste code into theme.scss.liquid but I do not have that file, I only have theme.css and theme.liquid.

https://1vg04kgvmi3n5uwc-65239023870.shopifypreview.com

Thank you.

@styl ,

a.btn.hero__btn {
    margin-top: 22em;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid

Please add below css code in bottom of assets/theme.css file

.hero__btn {
margin-top: 18rem;

}
Thank you.

1 Like

Thank you!