Hi there,
How can I move this content to the bottom of the image on Dawn theme?
Preferably with a code to add in the editor, so it will stay the same after a theme version update.
Thanks!
password kanex2024
A user sought help moving mobile content below an image banner in Shopify’s Dawn theme, preferably using custom CSS that would persist through theme updates.
Solutions provided:
Outcome:
The issue was resolved successfully using one of the provided solutions.
Hi there,
How can I move this content to the bottom of the image on Dawn theme?
Preferably with a code to add in the editor, so it will stay the same after a theme version update.
Thanks!
password kanex2024
Hello @INFRA ,
Add this css in theme settings custom css editor
@media screen and (max-width: 749px) {
.banner__box {
position: absolute !important;
bottom: 0 !important;
}
}
Thanks
this worked, thanks so much!