Move button next to header - Rich text / Dawn theme

hi guys,

I’m trying to create a section like this with the rich text section. What code could I use so the button appears on the right side? I can currently only get it below the header text.

website:

passw: fbc

thanks!

Hi @INFRA

Please go to Online Store > Themes > Customize > select that section, add those code below into Custom CSS of that section

@media (min-width: 990px) {   
 .rich-text__blocks {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        flex-direction: row;
        align-items: center;
    }
  .rich-text__buttons {
    max-width: 28rem;
    margin-top: 0px;
  }
}

1 Like

that worked perfectly, thank you so much!

1 Like

You are very welcome. Have a nice day!