html - Position absolute not scrolling on devices or Down Position of Links -


my site has problem in menu. isn't visible or scroll on mobile. i'm attaching picture enter image description here

i have position:absolute on drop down menu. can make home menu scrollable rest of page or other css fluid positioning make admin , logout link down device , desktop @ bottom? thank you.

@media (max-width: 767px) { .log-down,.admin-down {  top: 0;} } 

do same thing vasanth did instead of doing position absolute do

@media (max-width: 767px) {     .log-down,.admin-down {         position:fixed         bottom: 0px;        }     } 

e.g.

  bottom:0px; = bottom of page     top:0px; =  top of page     position:fixed = move screen 

i hope helped or misunderstood question


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -