View Single Post
Old 09-23-2012, 03:48 AM   PM User | #4
grimesd
New to the CF scene

 
Join Date: Sep 2012
Location: NY
Posts: 2
Thanks: 0
Thanked 1 Time in 1 Post
grimesd is an unknown quantity at this point
Hey, if you decide you want to do a mobile version of your site, you have two options. One is media queries, which is easier but adds more code to your css files. The second is create a "mobile version" of your site as Sammy12 mentioned.

Example of #1.
Code:
@media screen and (max-width:480) {
      // Styling goes here
}
Example of #2.
Instead of yoursite.com
It could be mobile.yoursite.com.

The latter is a definitely a more intensive variation to a mobile site because it involves a completely overhauled version of your website on a sub domain. Usually mobile versions are better for enterprise business (Google, yahoo). For a personal website, I'd suggest using media queries.

It's a must simpler(easier) approach than subdomain mobile version.
grimesd is offline   Reply With Quote
Users who have thanked grimesd for this post:
Rcoleman25 (09-24-2012)