I would like to move the button a bit down but i am having trouble doing that. I would love some help. I marked the position in blue where I would like to have the button
Hi @Venomshop
To move the device it is only in the mobile screen? Would you mind to share your Store URL website? with password if its unpublish. Thanks!
Navigate to your theme’s code editor → assets → section-image-banner.css and add the following code to the end of the file:
.banner__box.content-container.content-container--full-width-mobile.color-inverse.gradient {
transform: translateY(50%);
}
If the above doesn’t work, try this:
.banner__box.content-container.content-container--full-width-mobile.color-inverse.gradient {
transform: translateY(50%) !important;
}
Feel free to adjust the percentage value accordingly.
1 Like
