Advertisement
DrupalCustom

Jon

Mar 19th, 2012
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.89 KB | None | 0 0
  1.  
  2. #block-system-main-menu .menu,
  3. #block-system-main-menu .menu li {
  4.   margin: 0;
  5.   padding: 0;
  6.   list-style: none;
  7. }
  8.   #block-system-main-menu .menu li {
  9.     display: block;
  10.     overflow: hidden;
  11.     clear: both;
  12.   }
  13.     #block-system-main-menu .menu li a {
  14.       display: block;
  15.       float: left;
  16.       width: 100px;
  17.       padding: 20px 0;
  18.       background: #494949;
  19.       margin: 2px;
  20.       text-align: center;
  21.       color: #fff;
  22.       text-decoration: none;
  23.     }
  24.    
  25.      #block-system-main-menu .menu li:nth-child(1) a {
  26.    background: url(../images/home.png);
  27.   }
  28.   #block-system-main-menu .menu li:nth-child(2) a {
  29.     background: url(../images/aboutus.png);
  30.   }
  31.   #block-system-main-menu .menu li:nth-child(3) a {
  32.      background: url(../images/products.png);
  33.   }
  34.  
  35.   #block-system-main-menu .menu li:nth-child(4) a {
  36.      background: url(../images/contactus.png);
  37.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement