Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 1st, 2012  |  syntax: None  |  size: 1.67 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Menu goes out of the screen but page stays unable to scroll
  2. ...
  3. <body>
  4.     <div id="container">
  5.         <div class="menu" >
  6.             <ul>
  7.                 <li><a href="http://newfutureuniversity.org/">New Future</a></li>
  8.                 <li><a href="http://newfutureuniversity.org/learn/degree/">Learn</a>
  9.                 <ul class="bottom">
  10.                 ...
  11.                 </ul>
  12.                 </li>
  13. ...
  14.        
  15. body                /* Changes the style for the whole body */
  16.     {
  17.     position:absolute;
  18.     margin:0px;         /* Avoids margin in the whole page */
  19.     padding:0px;
  20.     border:0px;
  21.     background-color: #EEEEEE;  /* Default background color, light grey */
  22.     height:100%;            /* Vertically complete */
  23.     width:100%;
  24.     min-width:400px;
  25.     min-height: 100%;
  26.     color: #333;            /* Letters color */
  27.     }
  28.  
  29. #container          /* The container has the header, main and footer inside */
  30.     {
  31.     position:relative;
  32.     margin:0px;
  33.     padding:0px;
  34.     min-height: 100%;       /* Avoids the footer to go up */
  35.     height: auto !important;
  36.     height: 100%;
  37.     margin: 0px auto -51px;
  38.     }
  39. .menu
  40.     {
  41.     position: fixed;
  42.     top:0px;
  43.     left:0px;
  44.     opacity:0.3;
  45.     filter:alpha(opacity=30);   /* For IE8 and earlier */
  46.     width:100%;
  47.     min-width:400px;
  48.     border:none;
  49.     border-bottom:1px solid gray;
  50.     margin:0px;
  51.     padding:0px;
  52.     font-size:18px;
  53.     z-index:3;
  54.     }
  55.  
  56. .menu ul
  57.     {
  58.     background:#DDD;
  59.     height:26px;
  60.     list-style:none;
  61.     margin:0px;
  62.     padding:0px;
  63.     z-index:3;
  64.     }
  65.     .menu li{
  66.         width:24.5%;
  67.         min-width:93px;
  68.         float:left;
  69.         padding:0px;
  70.         margin: 2px 0px 2px 0.5%;
  71.         }
  72. ...