Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tuanbbhero/b8698a0b5d7af35cd09a9ff638878282 to your computer and use it in GitHub Desktop.
Save tuanbbhero/b8698a0b5d7af35cd09a9ff638878282 to your computer and use it in GitHub Desktop.
Full-height sticky row on right and left, created by BeaverHero.com
/* If you want to sticky on RIGHT, use this css */
@media screen and (min-width:991px) {
.kl-fixed-sidebar {
position: fixed;
top:0;
bottom:0;
right:0;
height:100%;
z-index:9000;
width: 250px;
background-color: #f5f5f5;
}
}
/* If you want to sticky on LEFT, use this css */
@media screen and (min-width:991px) {
.kl-fixed-sidebar {
position: fixed;
top:0;
bottom:0;
left:0;
height:100%;
z-index:9000;
width: 250px;
background-color: #f5f5f5;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment