Move Titel above image

Hello guys, how can I move this Titel above my image?

Hi @NikosBat

Please follow these steps to implement the requested changes:

  1. Add Custom Liquid
    Navigate to the desired section and add the following Custom Liquid code as shown in this screenshot:
    https://prnt.sc/kKGuTCoa21EU

  2. Insert the Code Below
    Add the following code to the designated section, where you can modify the text as needed:

  
    Image with text  

  1. Add CSS to theme.liquid
    Insert the following CSS code before the closing tag in your theme.liquid file:
{% style %}  
#custom-text {  
    display: none;  
}  
@media screen and (max-width: 768px) {  
    #custom-text {  
        display: block !important;  
    }  
    section.shopify-section:has(div#custom-text) + div h2.image-with-text__heading {  
        display: none !important;  
    }  
}  
{% endstyle %}

Result
Once implemented, the final result should look like this:
https://prnt.sc/Ev7_RwBsNfkI

I hope this helps

Best,

Daisy