simmons2714
simmons2714

Reputation: 17

Website Scaling

So on this website I've been building I gotten to the point where I test to see what it looks like in other resolutions and browsers. The only problem that I have is with my navbar. The tabs in the nav bar get pushed down to the next line of the page. So my question is how can I scale it so that it fits with in the 960 desgin on all/most resolutions?

I've tried

<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"> 
<meta name="viewport" content="width=1024, initial-scale=1">

but that doesn't work. http://www.chrhsink.net23.net

Upvotes: 0

Views: 91

Answers (1)

Lemmerich
Lemmerich

Reputation: 1302

You would need to make it "responsive" somehow... Using media queries as stated by Log1c is an option. Maybe this post (http://java.dzone.com/articles/getting-started-responsive-web) might give you a good idean on what needs to be done.

Upvotes: 1

Related Questions