How can I align all page rich text to the left?

Hi,

I want to align (in all pages) rich text to the left

any help? thank you!

Hi @Laura_54 ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/section-rich-text.css->paste below code at the bottom of the file:
@media (min-width: 750px) {
.rich-text--full-width .rich-text__blocks {
    width: 100%;
    max-width: 100%;
    padding: 0 50px;
}
}

.rich-text--full-width .rich-text__blocks {
    text-align: left !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

2 Likes

thanks!