Move button hight

Hello friends, how can I adjust the button hight in this section, as you see in the image I want my button to be below the images.

Hi @NikosBat ,

Can you please share the store URL? so I can provide a more tailored solution for this and on how to center the Title and minimize width space.

Hello Mateen_Asghar, here is the url and password : nistore.de, nikthe

"Hey Nikos,

To achieve that, you’ll need some custom coding. You can:

  1. Edit code in your theme:

    • Navigate to the “sections” folder.
    • Locate the section used in that area (e.g., “banner”).
    • Find the HTML div containing the image class (e.g., “image”).
  2. Add custom CSS within that div:

    • You can use ChatGPT to help you craft the specific CSS rules.
    • Apply styles similar to those in my photo. (position: absolute , top : 75% , etc)
  3. Implement mobile responsiveness:

    • Use CSS media queries to adjust the image size percentages for smaller screen sizes (e.g., for mobile devices)."

Hi @NikosBat ,

You can follow the steps here:

Step 1: Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
Step 2: From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/ypQ7nly2wv27
Step 3: Copy the code below and paste it there

Here is the code for step 3:

@media screen and (min-width: 1024px){
div#Banner-template--22328067621196__image_banner_FdgqPH {
    flex-direction: column !important;
}
div#Banner-template--22328067621196__image_banner_FdgqPH::before {
    display: none !important;
}
div#Banner-template--22328067621196__image_banner_FdgqPH .banner__media.media {
    position: relative !important;
}
}

Here is the result:

Please let me know if it works!

Best,

Daisy