Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. /* If you want to sticky on RIGHT, use this css */
  2. @media screen and (min-width:991px) {
  3. .kl-fixed-sidebar {
  4. position: fixed;
  5. top:0;
  6. bottom:0;
  7. right:0;
  8. height:100%;
  9. z-index:9000;
  10. width: 250px;
  11. background-color: #f5f5f5;
  12. }
  13. }
  14. /* If you want to sticky on LEFT, use this css */
  15. @media screen and (min-width:991px) {
  16. .kl-fixed-sidebar {
  17. position: fixed;
  18. top:0;
  19. bottom:0;
  20. left:0;
  21. height:100%;
  22. z-index:9000;
  23. width: 250px;
  24. background-color: #f5f5f5;
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement