Hi,
I edited CSS code to display a different image on mobile vs desktop and it worked successfully. I am however struggling to have the Shop All button position be in a different location for website vs mobile. I am using the below code and it doesnt seem to update button placement in mobile view.
@media only screen and (max-width: 767px) {
.banner__buttons {
top: 10px;
}
} /* Default styles for both desktop and mobile /
.banner__buttons {
position: relative;
bottom: 70px; / Default bottom position /
right: 200px; / Default right position /
} / Media query for mobile devices (max-width: 370px) */