Advertisement
srikat

Untitled

May 21st, 2013
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.94 KB | None | 0 0
  1. /*********************************************
  2.         Fixed Header on homepage only
  3. *********************************************/
  4.  
  5. @media only screen and (min-width: 0px) and (min-width: 769px) {
  6. /*  .builder-module-1-background-wrapper.fix {
  7.             position: fixed;
  8.             top: 0;
  9.             left: 0;
  10.             z-index: 1000;
  11.             width: 100%;
  12.             max-width: 100%;
  13.             overflow: visible;
  14.             background: rgba(255, 255, 255, 0.92);
  15.     }
  16.  
  17.     .admin-bar .builder-module-1-background-wrapper.fix {
  18.             top: 28px;
  19.     }*/
  20.  
  21.     .home .builder-module-1-background-wrapper {
  22.             position: fixed;
  23.             top: 0;
  24.             left: 0;
  25.             z-index: 1000;
  26.             width: 100%;
  27.             max-width: 100%;
  28.             overflow: visible;
  29.             background: rgba(255, 255, 255, 0.92);
  30.     }
  31.  
  32.     .admin-bar .builder-module-1-background-wrapper {
  33.             top: 28px;
  34.     }
  35.  
  36.     .home .builder-container {
  37.         margin-top: 115px;
  38.     }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement