如何在我想要的地方移动这个jquery菜单?

时间:2013-01-15 21:27:02

标签: jquery html css menu

我试图将此菜单稍微放在顶部并居中 我试着调整了很多css,但仍然没有。

这是我的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;
        }

2 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分:0)

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