Originally posted by: troytime
depends on the site really...but use common sense
make it small, text only (or at least text mostly), functional
test it test it test it
also, get the .mobi domain rather than using a subdomain.
Originally posted by: Argo
Do you mean render the site in WML or use HTML that looks good on small devices? If it's the later, then experience+testing should do it for you.
Originally posted by: George P Burdell
Originally posted by: Argo
Do you mean render the site in WML or use HTML that looks good on small devices? If it's the later, then experience+testing should do it for you.
These are the main two options open to you. I'm more in favor of the latter. All you need to do is present cleaner HTML for a narrow width screen.
You can look at a few of my phone bookmarks to see what's going on:
http://m.youtube.com
Originally posted by: edprush
The person designing my mobile-compatible site wants to design a seperate site for mobile users. Is that feasible?
Originally posted by: George P Burdell
3. Does your main domain recognize mobile devices and automatically redirect them?
It is convenient if your main website can detect a mobile device and redirect to a mobile version. All a user has to do is type in domain.com and be redirected to the correct website, like domain.com/mobile. With the .com autocomplete feature added in, you can see how convenient this is.
Originally posted by: edprush
Originally posted by: George P Burdell
3. Does your main domain recognize mobile devices and automatically redirect them?
It is convenient if your main website can detect a mobile device and redirect to a mobile version. All a user has to do is type in domain.com and be redirected to the correct website, like domain.com/mobile. With the .com autocomplete feature added in, you can see how convenient this is.
How is that accomplished? I've read about browser sniffers. Is that what you are referring to?
I like m.domain.com as the URL for my mobile site. Do you think it is becoming more 'universal' to use m.domain.com? Or are more mobile users likely to try domain.com/m or mobile.domain.com/m or domain.com/mobile ?
Originally posted by: George P Burdell
Every browser send out information while requesting a page. For example, this is what my computer sends out when I click on the programming forum:
http://forums.anandtech.com/categories.aspx?catid=70
GET /categories.aspx?catid=70 HTTP/1.1
Host: forums.anandtech.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6
My cellphone, on the other hand, transmits:
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IE Mobile 6.12) T-Mobile Dash
This is one of the ways a mobile device can be detected.
Originally posted by: edprush
Originally posted by: George P Burdell
Every browser send out information while requesting a page. For example, this is what my computer sends out when I click on the programming forum:
http://forums.anandtech.com/categories.aspx?catid=70
GET /categories.aspx?catid=70 HTTP/1.1
Host: forums.anandtech.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6
My cellphone, on the other hand, transmits:
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IE Mobile 6.12) T-Mobile Dash
This is one of the ways a mobile device can be detected.
What type of programming/coding does my website need to be able to 'recognize' that it is being accessed by a mobile device?
Originally posted by: troytime
php, asp, cold fusion, ruby, anything that you can interpret the user agent and http_accept data and use it to redirect to your mobile url.
the detection rules will need to be updated occassionaly
Originally posted by: edprush
I meant to say, is there a script or something (that has the detection rules) that needs to be put in my website for it to recognize mobile users?
Originally posted by: edprush
Originally posted by: troytime
php, asp, cold fusion, ruby, anything that you can interpret the user agent and http_accept data and use it to redirect to your mobile url.
the detection rules will need to be updated occassionaly
I meant to say, is there a script or something (that has the detection rules) that needs to be put in my website for it to recognize mobile users?
Originally posted by: edprush
So does that script need to be updated frequently so it can recognize new mobile devices/browsers?
Originally posted by: troytime
.
.
.
.