My question has two parts.
Is it right to design a responsive site for the web and display it on a mobile device?
Should sites be designed separately for mobile devices?
|
My question has two parts.
|
|||||||||||||||
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Being a web-site designer for half my life, and now making my own mobile applications, I can offer a very simple piece of advice, let the user decide if he or she wants to use a mobile application, or full web-site. If you need to use a mobile application, try using the output of a content management system to get all your content into your mobile application, and be sure to make the experience as similar to your full web-site, as possible. If you have a mobile web-site, instead of an application, that contains all the same content and information, and is easily accessible using the same address, while at the same time, allowing the user to use the full web-site, you may have a better over all user experience. |
|||
|
|
|
I probably sound like a broken record but it depends on the specific situation. If you can base your decision on actual research all the better. Is there a current site, can you use analytics to see if anyone is currently viewing your site on other devices? If it's a new site can you do some research as to who your audience are and how they will access? In most instances I would encourage using responsive design techniques, but there may be more complex scenarios where offering a totally different site for mobile may make sense. Or even building a native mobile application. For instance maybe the web and mobile services differ? In which case using responsive web techniques may not go far enough. |
|||
|
|
|
Assuming that your site is using classical pages that are put together on the server (and not a client side page built with eg. Backbone.js) then I would say that you need to consider if the full pages makes sense on a small screen before starting to try and make a responsive design for a small screen. Eg. many blogs has enormous sidebars with lots and lots of not very relevant content. It may look okay on a big desktop screen, but when trying to make it all fit together on a small screen you realize that there's no logical place to put these things since the otherwise empty space they occupy on a big desktop screen doesn't exist on the small screen - instead the content has to occupy the full width of small screens and it's not relevant enough to justify that. So - if you, like eg. blogs, have much irrelevant content on your pages, then you're probably better of creating a separate design for the mobile pages where you can remove that content and have the design fully focus on your core content. If you don't have much irrelevant content - then do whatever makes sense from a technical point of view. |
|||
|
|