Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi all,
please see screenshot, Is there a way to move the cta button to the bottom of image and the heading to the top of image please? Just on mobile, not desktop.
Website - https://smoothervibes.com/
Thank you
Solved! Go to the solution
This is an accepted solution.
Add this CSS to the Custom CSS area of that section:
@media screen and (width < 750px) {
.banner__box {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}
}
This is an accepted solution.
Add this CSS to the Custom CSS area of that section:
@media screen and (width < 750px) {
.banner__box {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}
}
Legend, thank you