Getting a Responsive Design

  • (2 Pages)
  • +
  • 1
  • 2

16 Replies - 643 Views - Last Post: 01 February 2012 - 07:13 AM

#1 Bookmonkey  Icon User is offline

  • New D.I.C Head

Reputation: 1
  • View blog
  • Posts: 29
  • Joined: 27-August 11

Getting a Responsive Design

Posted 25 January 2012 - 10:40 PM

Hey Guys

I am trying to get my site to be 'responsive' and adjust to the screen resolution. You can see the site here

If anyone has any ideas or want to share some tips on how I can make it fit.

- On IPhones the Nav bar is not resizing, and my footer is also not resizing see here

If anyone can offer me some help. That would be great

Is This A Good Question/Topic? 0
  • +

Replies To: Getting a Responsive Design

#2 Lemur  Icon User is offline

  • OpenBSD Head
  • member icon


Reputation: 1111
  • View blog
  • Posts: 3,061
  • Joined: 28-November 09

Re: Getting a Responsive Design

Posted 25 January 2012 - 11:07 PM

I'd make a separate site for the mobile version, normally a m.mydomain.com works fine.

As far as resolution, you have to use elastic units and measure your site by those standards. Measure your site vie percentage, it tends to be easier to figure things for. With that the entire site will dynamically resize as per the resolution.
Was This Post Helpful? 1
  • +
  • -

#3 Bookmonkey  Icon User is offline

  • New D.I.C Head

Reputation: 1
  • View blog
  • Posts: 29
  • Joined: 27-August 11

Re: Getting a Responsive Design

Posted 26 January 2012 - 12:11 AM

How can i do this?
Was This Post Helpful? 0
  • +
  • -

#4 revolutionx  Icon User is offline

  • D.I.C Head

Reputation: 60
  • View blog
  • Posts: 229
  • Joined: 23-July 09

Re: Getting a Responsive Design

Posted 26 January 2012 - 05:02 AM

Instead of creating a separate subdomain, I would look at using CSS media queries.

Take a look at this tutorial: http://www.onextrapi...esign-template/

@media screen and (max-width: 478px) {
    h1 { font-size: 70px; padding: 1px; }
    h2 { font-size: 13px; padding: 1px; }
    body { font-size: 13px; }
}
 
@media screen and (max-width: 740px) {
    .left-col { width: 100%; }
    .sidebar { width: 100%; }
}
 
img {
    max-width: 100%;
    height: auto;
    width: auto\9; /* ie8 */
}



This is the important bit, if you resize your browser to be very thin, you'll notice that the sidebar will fall below the content and the text size will reduce. Which is what you probably want when you're browsing on a mobile device.
Was This Post Helpful? 1
  • +
  • -

#5 Shane Hudson  Icon User is offline

  • D.I.C Technophile
  • member icon

Reputation: 341
  • View blog
  • Posts: 1,281
  • Joined: 06-December 09

Re: Getting a Responsive Design

Posted 26 January 2012 - 06:28 AM

Lemur, he asked for responsive, not a mobile version.

I am currently using ZURB's Foundation template to make my site responsive, I don't usually use templates but it is the first responsive site I have made and the template helps a lot.
Was This Post Helpful? 1
  • +
  • -

#6 Shane Hudson  Icon User is offline

  • D.I.C Technophile
  • member icon

Reputation: 341
  • View blog
  • Posts: 1,281
  • Joined: 06-December 09

Re: Getting a Responsive Design

Posted 26 January 2012 - 06:28 AM

Lemur, he asked for responsive, not a mobile version.

I am currently using ZURB's Foundation template to make my site responsive, I don't usually use templates but it is the first responsive site I have made and the template helps a lot.
Was This Post Helpful? 0
  • +
  • -

#7 Lemur  Icon User is offline

  • OpenBSD Head
  • member icon


Reputation: 1111
  • View blog
  • Posts: 3,061
  • Joined: 28-November 09

Re: Getting a Responsive Design

Posted 26 January 2012 - 12:19 PM

@Shane Hudson

View PostBookmonkey, on 25 January 2012 - 11:40 PM, said:

On IPhones the Nav bar is not resizing, and my footer is also not resizing see here


...

Lemur said:

As far as resolution, you have to use elastic units and measure your site by those standards.


....what exactly now? I believe I did in fact cover those, or in the other case believed it was warranted.
Was This Post Helpful? 0
  • +
  • -

#8 Bookmonkey  Icon User is offline

  • New D.I.C Head

Reputation: 1
  • View blog
  • Posts: 29
  • Joined: 27-August 11

Re: Getting a Responsive Design

Posted 26 January 2012 - 12:26 PM

I see both sides, Each have their merits, but I think ill go with the CSS3 Media Queries, that way I dont have to make an new version of the site. And It will be easier, although I might keep that template in my samples folder. Looks quite good. I have a querie though, how exactly does it work.. Do you place them in divs that scale down?
Was This Post Helpful? 0
  • +
  • -

#9 Bookmonkey  Icon User is offline

  • New D.I.C Head

Reputation: 1
  • View blog
  • Posts: 29
  • Joined: 27-August 11

Re: Getting a Responsive Design

Posted 31 January 2012 - 02:25 PM

Hello? You still haven't offered anything that works, Have you looked at the code for my website?
Was This Post Helpful? 0
  • +
  • -

#10 innuendoreplay  Icon User is offline

  • D.I.C Head

Reputation: 5
  • View blog
  • Posts: 62
  • Joined: 01-October 11

Re: Getting a Responsive Design

Posted 31 January 2012 - 03:24 PM

Oh dude!, i try your site in the iphone website tester and is a disaster =S are you using a framework?
Was This Post Helpful? 0
  • +
  • -

#11 Bookmonkey  Icon User is offline

  • New D.I.C Head

Reputation: 1
  • View blog
  • Posts: 29
  • Joined: 27-August 11

Re: Getting a Responsive Design

Posted 31 January 2012 - 03:25 PM

No im not using a framework.. I never have used a framework.
Was This Post Helpful? 0
  • +
  • -

#12 Bookmonkey  Icon User is offline

  • New D.I.C Head

Reputation: 1
  • View blog
  • Posts: 29
  • Joined: 27-August 11

Re: Getting a Responsive Design

Posted 31 January 2012 - 03:42 PM

Should I be using a Framework @innuendoreplay
Was This Post Helpful? 0
  • +
  • -

#13 innuendoreplay  Icon User is offline

  • D.I.C Head

Reputation: 5
  • View blog
  • Posts: 62
  • Joined: 01-October 11

Re: Getting a Responsive Design

Posted 31 January 2012 - 04:28 PM

Not necessary but is a good way for mantain a responsive design for your site in the easy way; otherwise you need thread with all the platforms and it's a big problem. Check this

This post has been edited by innuendoreplay: 31 January 2012 - 04:29 PM

Was This Post Helpful? 0
  • +
  • -

#14 Bookmonkey  Icon User is offline

  • New D.I.C Head

Reputation: 1
  • View blog
  • Posts: 29
  • Joined: 27-August 11

Re: Getting a Responsive Design

Posted 31 January 2012 - 09:11 PM

What one do you recommend using?
Was This Post Helpful? 0
  • +
  • -

#15 innuendoreplay  Icon User is offline

  • D.I.C Head

Reputation: 5
  • View blog
  • Posts: 62
  • Joined: 01-October 11

Re: Getting a Responsive Design

Posted 31 January 2012 - 09:56 PM

View PostBookmonkey, on 31 January 2012 - 09:11 PM, said:

What one do you recommend using?

less framework is a nice option,
Was This Post Helpful? 0
  • +
  • -

  • (2 Pages)
  • +
  • 1
  • 2