I created this website with the original intention of having it be mobile. However I\'ve had to take that function out and for the time being just wanted to have it so when
I didn't find a css for mobile devices in your themes style.css file. Please write some css for various device like android, iphone, ipad, tablet pc etc.
Example:
* @media Rule */
@media all and (max-width: 1024px) {here is your css code}
@media all and (min-width: 800px) and (max-width: 1024px) {here is your css code}
@media all and (min-width: 320px) and (max-width: 780px) {here is your css code}
I think it will help you to understand responsive css design properly.
Thanks