Shop now button not appearing on mobile landing page

Hi,

The shop now button doesn’t appear on the landing page on mobile. Is it possible to bring it up?

Theme: Sense

Url: www.breeprobiotics.co.za

See pics below

Hello @Mike22288804

Go to Online store >> Edit code >> Assets >> base.css
Add this code below of base.css file

@media(min-width: 280px) and (max-width: 767px){
.announcement-bar__message {
width: 90% !important;
text-align: left !important;
margin-left: 0px !important;
font-size: 11px !important;
padding-top: 5px !important;
padding-bottom: 5px !important;
}

#shopify-section-template–16032250396859__image-with-text .image-with-text–overlap .image-with-text__content {
margin: -8rem auto 0;
}
}

Hiii @Mike22288804
You can try this code by following these
steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file base.css.
Step 3: Paste the below code at bottom of the file → Save

@media screen and (max-width: 767px){
    #ImageWithText--template--16032250396859__image-with-text a.button.button--primary {
    display: none;
  }
}

Hey @Mike22288804 , the thing is that you will have to change the button code..

Thanks for the help, but unfortunately it didn’t work.

Thanks, but unfortunately it didn’t work.

Thanks Mark,

How do I go about that?

@Mike22288804

Go to Online store >> Edit code >> Assets >> base.css
Add this code below of base.css file

@media(min-width: 280px) and (max-width: 767px){
.announcement-bar__message {
width: 90% !important;
text-align: left !important;
margin-left: 0px !important;
font-size: 11px !important;
padding-top: 5px !important;
padding-bottom: 5px !important;
}

#shopify-section-template--16032250396859__image-with-text .image-with-text--overlap .image-with-text__content {
margin: -8rem auto 0;
}
}

Thanks, I’ve tried this and it didn’t work.

@Mike22288804

  1. Go to Online Store-> Theme-> Edit code
  2. Open your theme.liquid theme file
  3. Paste the below code before :
<style>
@media(min-width: 280px) and (max-width: 767px){
.announcement-bar__message {
width: 90% !important;
text-align: left !important;
margin-left: 0px !important;
font-size: 11px !important;
padding-top: 5px !important;
padding-bottom: 5px !important;
}

#shopify-section-template--16032250396859__image-with-text .image-with-text--overlap .image-with-text__content {
margin: -8rem auto 0 !important;
}
}
</style>