Hello amazing community! π
I'd like to ask you a question: what are your solution for displaying one image for desktop and another for mobile?
Decided to simply go with :
.mobile-img {
display: none;
}
@media only screen and (max-width: 745px) {
.desktop-img {
display: none;
}
}
What do you think? π