Hello guys, how can I move this Titel above my image?
Hi @NikosBat
Please follow these steps to implement the requested changes:
-
Add Custom Liquid
Navigate to the desired section and add the following Custom Liquid code as shown in this screenshot:
https://prnt.sc/kKGuTCoa21EU -
Insert the Code Below
Add the following code to the designated section, where you can modify the text as needed:
Image with text
- Refer to this screenshot for guidance:
https://prnt.sc/dtAa2pki22z3
- 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