why my button of banner is big? how to be normal

Hi @Jim_65 , try this

Step 1. Go to Admin → Online store → Theme > Edit code

Step 2. Find the file base.css
Step 3. Copy this code at the end of the file

.banner__buttons {
    transform: scale(0.5); /* Change this number to suit your site */
}

If it helps you, please like and mark it as the solution.

Best Regards

have not changed :sob:

could you share your store url? I will help you better :wink:

I have solved the problem, but now I have a new question, how to make the text background in the banner transparent.

Step 1. Go to Admin → Online store → Theme > Edit code

Step 2. Find the file base.css
Step 3. Copy this code at the end of the file

#Banner-template--22845323149613__image_banner_xFiiaw .banner__box.content-container {
   background: transparent!important;
}
#Banner-template--22845323149613__image_banner_xFiiaw .banner__box.content-container:after {
   box-shadow: none!important;
}

You will get result like this

To make the button not transparent put this code

.banner__buttons > a {
  opacity: 1!important;
}

at the end of previous code

thank you very mcuh❤