Resize rich text buttons

Hello,

How can I change the size of these buttons? I am on dawn theme and this is my store: https://sleekspacesliving.com/

I want my buttons to look like this on my home page with:

Thank you!

Hi @MinnieLittyy

Try this one. Im not sure if this enough.

  • 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:
a.button.button--secondary {
    padding: 0 10px 0 10px;
    min-width: 60px;
}
.rich-text__buttons.rich-text__buttons--multiple.scroll-trigger.animate--slide-in a {
    min-height: 35px;
}

I hope it help.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

It did not work when pasted under base.css. So, I had to post it in the theme settings in theme editor. That worked. It’s perfect but, is it okay to put it under theme settings?