Make Shop Now Button Smaller On Home Page - Mobile Only

Solved

Make Shop Now Button Smaller On Home Page - Mobile Only

amyp25
Excursionist
15 1 14

On mobile my Shop Now button is huge and hard to see where it is placed, but looks perfect on desktop and pads.  How can I adjust mobile size/placement only?  The site is live at www.theblacksheepfam.com and this is the Dawn theme. Thanks in advance!

 

Mobile

amyp25_0-1691417607179.png

Pad / Desktop

amyp25_1-1691417687037.png

 

 

Accepted Solutions (2)

Sinchain
Shopify Partner
69 15 20

This is an accepted solution.

Hey @amyp25 

Thank you for reaching out to the Shopify community.

Here are the steps for your reference:

1. Navigate to the theme editor Online Store -> Themes -> Edit Code.

2. Search for the asset named as search-image-banner.css, open the file and add the below code at the end of the file:

@media screen and (max-width: 749px) {
  .banner__buttons{
    top: 98px;
  }
  .banner:not(.banner--mobile-bottom) .button--secondary {
    border: 1px solid #000;
    padding: 7px 10px;
    min-height: unset;
    color: #000;
    line-height: unset;
    background: #fff;
  }
}


Save the changes and please have a check once. Let me know if this was helpful.

Thanks.

Sinchain || Recurpay Subscriptions

- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution

View solution in original post

amyp25
Excursionist
15 1 14

This is an accepted solution.

That worked very nicely, thanks so much!

View solution in original post

Replies 2 (2)

Sinchain
Shopify Partner
69 15 20

This is an accepted solution.

Hey @amyp25 

Thank you for reaching out to the Shopify community.

Here are the steps for your reference:

1. Navigate to the theme editor Online Store -> Themes -> Edit Code.

2. Search for the asset named as search-image-banner.css, open the file and add the below code at the end of the file:

@media screen and (max-width: 749px) {
  .banner__buttons{
    top: 98px;
  }
  .banner:not(.banner--mobile-bottom) .button--secondary {
    border: 1px solid #000;
    padding: 7px 10px;
    min-height: unset;
    color: #000;
    line-height: unset;
    background: #fff;
  }
}


Save the changes and please have a check once. Let me know if this was helpful.

Thanks.

Sinchain || Recurpay Subscriptions

- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
amyp25
Excursionist
15 1 14

This is an accepted solution.

That worked very nicely, thanks so much!