Hello
I am using the Broadcast theme and I am wanting to move the location of the text on the mobile view.
I would like the move the text to the bottom of the photo.
Thank you for your help!
TRy this one.
@media only screen and (max-width: 749px){
.hero__content__wrapper .hero__content {
align-self: end !important;
}
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file theme.css and add this code at the end of the file
@media (max-width: 768px) {
.hero__content__wrapper.frame__item.align--bottom-left-desktop.align--middle-center-mobile {
align-items: flex-end !important;
}
}
Result
Best,
DaisyVo
This worked! Thank you so much!