CSS CODE
.mobileShow {
display: none;
margin-bottom: -5px;
padding-bottom: -5px;
}
/* Smartphone Portrait and Landscape */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 780px) {
.mobileShow {
display: inline !important;
}
}
Read More
Read More