How can I align button horizontally with text on Dawn theme?

Hi,
I am on the theme Dawn, and I want to change the button to align horizontally with the text rather than vertically.

The section type is rich text.

I would like to only change the CSS for this section only rather than the code for the whole website, but I’m not a developer so if changing the source code is the only option that’s ok (Although I’m not sure what I’d have to change).

Currently it looks like this:

But I would like it to look like this (Made in Photoshop):

Would somebody be able to help me with this?
I would be greatly appreciative.

Thank you!

Hi @viodelights

You can do that by adding this CSS code in Custom CSS of that section

.rich-text__blocks {
    display: flex;
    justify-content: center;
    align-items: center;
}
.rich-text__buttons { margin-left: 16px !important; }
.rich-text__text,
.rich-text__buttons { 
width: auto; 
margin-top: 0px !important;
}

Awesome! Thank you so much!!

Happy I could help :blush: !