Rather than make the needed plugin what I'm going to do is use some CSS tricks to display the content I want on mobiles and not on larger screens.
So in concept you have something like
@media handheld, only screen and (max-width: 649px) {
.largecontent { display:none; }
}
@media handheld, only screen and (min-width: 650px) {
.mobilecontent {display:none;
}
No comments:
Post a Comment