CSS For Fullpage on Wordpress -


i new , limited on knowledge of css. working on building website using salient theme on wordpress. homepage, trying build landing page or sort of "portal." ideally, responsive , fit browser regardless of width or height.

i using custom css page in wordpress , have following:

.at-content {  position: fixed;  background-color: #f7f6f5;  height: 100%;  width: 100%;  overflow: scroll;} 

i think part of problem have fixed, if change position giant grey bar appears @ bottom of browser when becomes large.

currently responds when change width, height remains same.

here current page: http://chairflyer.com

any on how fix appreciated.

you can use vh , vw fit dimensions of viewport (viewport height , viewport width).

.at-content {  width: 100vw;  height: 100vh; } 

Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -