Custom CSS for Mobile devices
Description
HTML Source Code
This code is for custom css for mobile only. The best place to put this custom css is at the very bottom of the css file. Any time you declare mobil css for a div it must go under the PC css of that div.
CSS Source Code
/***@ Media Start*****/
@media only screen and (max-device-width: 480px) and (min-device-width: 320px){
/**********************CSS goes under this line*******************/
/**********************CSS goes above this line*******************/
}
/***@ Media End*****/