How to move button label in Image with Text Overlay section

Hello,

The button label (“Shop Now”) in my Text with Overlay section currently sits in the middle of the image. I would like to move it over to the left and up a little bit so that it is placed to the left of the cottage in the blue sky area. I use the Debut theme.

Thanks in advance.

URL:

https://somedayseeds.com/?_ab=0&_fd=0&_sc=1&key=cd4555d539818eb3886cee07ca4857bcad46f9f147f1025d01f205290947a51c

Hello @emily34 ,

Edit theme.css under Assets and add this code at bottom.

@media screen and (min-width: 768px) {
.hero .hero__inner .page-width.text-center {
    position: absolute;
    top: 20%;
    left: 10%;
}
}

Thanks

1 Like

Hi @emily34 ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css->paste below code at the bottom of the file:
@media (min-width: 990px) {
.hero .hero__inner .hero__btn {
    position: absolute;
    top: 10%;
    left: 10%;
}
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.