-2

I have not a experience on the mobile development. There is a site that opens on a mobile scattered. I should create Mobile Version of that site. I have 2 question to start:

1. How can I create a mobile version of that site? To take existing site HTML and to add some attribute them? How do 2 versions (web and mobile) do the same operations?

2. Which Mobile Framwork do You recommend that is easy and well?

Jeyhun Rahimov
  • 3,769
  • 6
  • 47
  • 90

2 Answers2

2
  1. You should have a look at CSS Media Queries and make your website responsive.

  2. I can suggest Foundation, a responsive front-end framework

Schaemelhout
  • 685
  • 9
  • 25
1
  • First of all, the main thing I would do is make sure your widths are in percentages. This way your site will adjust based on the size of the window (the web has always been naturally responsive).

  • To make a mobile version of your existing site it will take some adjustments using CSS, so that it looks good on different size screens. This is basically retrofitting, heres a good article on that. Basically resize your browser (with your site opened up), and where ever it starts looking funny, unreadable, or you feel a change could be made to enhance the look just add a breakpoint using CSS Media Queries as mentioned in the above response.

  • I've always heard good things about Foundation, as mentioned above. Depending on the complexity of your site you could do without and just roll your own responsive, mobile version of your site.

josh_bailey4
  • 111
  • 1
  • 11