Button on home page banner is too high on mobile version

Hello, I am ready to publish my site and I noticed the button on the banner of my homepage is too high on the mobile version. I am using the Refresh theme. Here is my URL https://55d354.myshopify.com/


covering up my text. I have tried everything, but I can’t figure it out. I have attached screenshots to be explain.

1 Like

@Crypto_Chris - add this css to the end of your base.css file and check

@media only screen and (max-width: 767px){
.banner__content .banner__buttons a{top: 35px;}
}

Hi @Crypto_Chris

Try 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: 749px){
.banner__buttons {
    position: absolute;
    top: 50px;
}
}

Hi @Crypto_Chris

This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:
Online Store ->Theme ->Edit code
Assets ->Base.css

@media only screen and (max-width: 767px){
.banner__buttons {
    position: absolute !important;
    top: 50px !important;
}
}

Hope you find my answer helpful!
Best regards,
Richard | PageFly