Home / Tips and Tricks / Show on mobiles only

Show on mobiles only

click-to-call-budgettaxdep

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;
	}
}

Top