How can I match the text length in two different sections on my site?


How do I make the text in the red cirkle above to have the same length as the one below? I want them to have the same length. This is my shopify url: https://gocookie.se/

Hi @Felix_o ,

Please follow these steps:

Online store → Themes → Edit code → find the theme.liquid file

Right after the opening tag, add this code:

→ Code snippet:

<style>
    @media only screen and (min-width: 1681px) {
        #shopify-section-template--20618212213081__text_desktop_only_NtHWAz > div > div.ctnr > div:nth-child(1) > div > div > div.s-header-content.hide-empty.js-animate.anm.animated > div.s-header__desc.text-block.hide-empty {
        margin-top: calc(var(--spacing)* 2);
        margin-inline-end: 200px;
      }
    }
</style>

Result:

Hope it helps @Felix_o