Optimizing my Customizr site for smart phone?
-
Hi there,
I’m trying to figure out the best way to optimize my site for smart phones. It looks great on a tablet or laptop, but not on a phone.
I added some Custom CSS a long time ago to try and address this:
/* ============================================== */ /* iPad Portrait and Narrower browsers */ /* 768x1024 */ /* ============================================== */ @media all and (max-width: 768px) { /* <your css here> */ } /* ============================================== */ /* iPhone5/Android landscape (& narrow browser) */ /* 568x320 */ /* ============================================== */ @media all and (min-width: 320px) and (max-width:568px) { /* <your css here> */ } /* ============================================== */ /* iPhone4/Android landscape (& narrow browser) */ /* 480x320 */ /* ============================================== */ @media all and (min-width: 320px) and (max-width:480px) { /* <your css here> */ } /* ============================================== */ /* iPhone4/Android portrait 320x480 */ /* iPhone5 portrait 320x568 */ /* ============================================== */ @media all and (max-width:320px) { /* <your css here> */ } /* ============================================== */ /* Smaller devices */ /* Android Portrait 240x320 */ /* ============================================== */ @media all and (max-width:240px) { /* <your css here> */ }
But I’m still not happy with the outcome when viewing the site on a smart phone. Any ideas for how I can improve this?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Optimizing my Customizr site for smart phone?’ is closed to new replies.