2013-01-15 27 views
0

我嘗試定位這個菜單更頂端一點,中心 我試圖調整大量的CSS,仍然沒有如何移動這個jquery菜單,我想要它?

這裏是我的jsbin

http://jsbin.com/welcome/74921/

body{ 
      background:#333 url(bg.jpg) repeat top left; 
      font-family:Arial; 
     } 
     span.reference{ 
      position:fixed; 
      left:10px; 
      bottom:10px; 
      font-size:12px; 
     } 
     span.reference a{ 
      color:#aaa; 
      text-transform:uppercase; 
      text-decoration:none; 
      text-shadow:1px 1px 1px #000; 
      margin-right:30px; 
     } 
     span.reference a:hover{ 
      color:#ddd; 
     } 
     ul.sdt_menu{ 
      margin-top:50px; 
     } 
     h1.title{ 
      text-indent:-9000px; 
      background:transparent url(title.png) no-repeat top left; 
      width:633px; 
      height:69px; 
     } 

回答

0
ul.sdt_menu { 
    margin: YOURTOPVALUEHERE auto 0 auto; 
    display: table; 
    width: auto; /* or remove your width value (better) */ 
} 
+0

吶它沒有居中它,另一個解決方案給出的dioedeous作品,但在ie它吃右邊緣preety很多使菜單棒在最小化的時候向右編輯 – user1936170

0
ul.sdt_menu { 
    margin-top: 150px; <--- get rid of this 
    margin-left:auto; <-- add this 
    margin-right:auto; <-- add this 
} 
相關問題