Advertisement
Guest User

our Nest in the West

a guest
Jan 3rd, 2014
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.34 KB | None | 0 0
  1. /*Tells the page to only do the following if the browser window is 1000px or more*/
  2. @media (min-width: 1000px){
  3.     /*Tells the container that holds the navigation menu to use 100% of the browser window*/
  4.     .row-fluid .span9 {
  5.         width: 100%;
  6.     }
  7.     /*Hides the original logo so you it doesn't show twice*/
  8.     .brand.span10.offset1 {
  9.         display: none;
  10.     }
  11.     /*Tells the navigation container to use your logo as the background, only show the logo once, center it within the width of the container, size it to not be larger than the container, and sets the container height to 120px.*/
  12.     .menu-primary-navigation-container {
  13.         background-image: url(http://www.ournestinthewest.com/wp-content/uploads/2013/12/logo-font-and-vane_final-cropped-small2.jpg);      
  14.         background-repeat: no-repeat;      
  15.         background-position: center;
  16.         background-size: contain;
  17.         height: 120px;  /*Can be raised or lowered to make the logo larger or smaller*/
  18.     }
  19.     /*Tells the 'the big day' link to create space before the next link*/
  20.     #menu-item-17 {
  21.         margin-right: 210px;    /*Can be raised or lowered to give the 2 links closest to the logo more or less space to make it centered*/
  22.     }
  23.     /*Tells the links where to line up in relation the height of the container*/
  24.     .navbar .nav {
  25.         padding-top:90px;   /*Can be raised or lowered to tell the links to lower or raise respectively.*/
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement