How can I reposition text above pictures on my webpage?

Hi :slightly_smiling_face:

i would like to bring this red sentence up, above the pictures. But i cant find how to do it. Maybe somebody can help?:slight_smile:

Link: https://linis-candy.de/products/wunschtuete
Many thanks!

Hello there,

Content is not visible.

Hi,
you have to select at least one picture. Then it appears

@LinisCandy by adding below css into base.css you can add message up

.gpo-app .gpo-form__group.gpo-col-12 {
    width: 100%;
    display: flex !important;
    flex-direction: column-reverse !important;
}

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset β†’ base.css and paste this at the bottom of the file:
.gpo-element.gpo-form__group.gpo-col-12.rounded__style.show-addon-for-option.has-error div:not([class]) {
    order: 1;
    padding-top: 20px;
}
.gpo-element.gpo-form__group.gpo-col-12.rounded__style.show-addon-for-option.has-error {
    display: flex;
    flex-direction: column;
}

Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.
If helpful then please Like and Accept Solution.