Rich Text - Move Titel completely to the left and text in the midde?

Hello,

I would like to make the changed displayed in the picture, can someone help me?

Thank you!

URL: https://suq5b8csct01fyzg-61270851797.shopifypreview.com/

Im using the Trade theme.

Hi @KimGottwald You can follow these steps:

Step 1: Go to Online store > Themes > Edit code

Step 2: find file base.css

Step 3: add code snippet below to the bottom of file base.css

@media screen and (min-width: 990px) {
    .rich-text__blocks {
        max-width: 78rem;
        display: flex;
        gap: 120px;
        justify-content: flex-start;
    }
    .rich-text__heading {
        margin-top: 2rem;
        width: 260px;
    }
    .rich-text__text {
        flex: 1;
    }
}

Result:

1 Like

Thank you, is it possible to move the title even more to the left and make the normal text centered and not to the left? THANK YOU :slightly_smiling_face:

Hi @KimGottwald ,

Can you share the URL link to the store again? I can’t check it on your website.