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.
passw: fbc
thanks!
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.
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;
}
}
that worked perfectly, thank you so much!
You are very welcome. Have a nice day!