Resize Button CTA on Theme Dawn

Hi All

I am newbie to shopify , how i could resize the central Button CALL To action in my main page and make it stand more and bigger

Thanks

Mohamed

Hi @mbenhassine ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid

Step 3: Insert the below code at the bottom of the file → Save

.banner__buttons a {
    padding: 2rem 4rem !important;
}

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

@mbenhassine

  • Here is the solution for you
  • Please follow these steps:

  • Then find the base.css file.
  • Then add the following code at the end of the file and press ‘Save’ to save it.
.banner__buttons .button--secondary {
    padding: 26px 48px !important;
    font-size: 24px !important;
    font-weight: 700 !important;
}
  • Here is the result you will achieve:

  • Please press ‘Like’ and mark it as ‘Solution’ if you find it helpful. Thank you.

Thanks for you help