Change site width to fluid


Author Message
AlLewis

Posted: 9/16/2015
Quote message 

Hi,

I have a website which is already up and running with content pages, but the site is not responding well to different screen sizes........so I would like to try and make the screen width a fluid value.

Is there any way I can do this with my existing site i.e. change JS or CSS files?

Thanks

Al
 
ja

Posted: 9/16/2015
Quote message 

Try changing .art-sheet.

example:
.art-sheet {
width:100%!important;
}
 
AlLewis55

Posted: 9/16/2015
Quote message 

Hi,

Thanks for your reply.....changing the art-sheet width works.

I have another problem: the mobile navigation is appearing when there should desktop navigation...is there any way to change this?

Al
 
James G

Posted: 9/16/2015
Quote message 

set min-width to 768px on the body element
example:

body {
min-width: 768px!important;
}

adjust as needed.