Control responsiveness


Author Message
Raymee

Posted: 10/13/2012
Quote message 

Is there any way to control when the responsive feature kicks in. V4

At the minute if I reduce the browser size (say on a 1000px wide page) at all, it will kick in.

Is there A way for instance to tell it not to kick in until the browser is 900px or less wide.

Many thanks
 
Kris

Posted: 10/13/2012
Quote message 

There should be media-queries in your CSS looking something like this:


@media all and (min-width: 780px) {

/* css-rules for screens with a minimum width of 780px (desktops) */
}

@media all and (min-width: 481px) and (max-width: 780px) {

/* css-rules for display on tablets */
}

etc...

 
Raymee

Posted: 10/13/2012
Quote message 

Thanks Kris - I'll play around there
 
Raymee

Posted: 10/14/2012
Quote message 

Yip Chris I was able to change it there- many thanks
 
Kris

Posted: 10/14/2012
Quote message 

You're welcome :)