Word子菜单在Wordpress中对齐中心

时间:2012-03-06 01:41:54

标签: css wordpress html-lists center submenu

您好我必须使用wordpress为网站创建一个水平子菜单。我玩CSS并且几乎就在那里我只需要将子菜单中的链接对齐到中心。我试过了:

text-align: center;

在#access ul ul中,但这似乎不起作用:S

该网站是:http://dev.timson.me(“即将来临”和“过去制作”的子菜单)

CSS是:

#access {
clear: both;
display: block;
float: left;
margin: 0 auto 6px;
padding-top: 8px;
width: 100%;
font-family: Stag;
display:block;
text-align:center;
}

#access ul {
    font-size: 13px;
    list-style: none;
    margin: 0 0 0 -0.8125em;
    padding-left: 0;

    display:inline-block;
}
#access li {
    float: left;
    position: relative;
}

#access a {
    color: #eee;
    display: block;
    line-height: 25px;
    margin-top: -4px;
    margin-bottom: -4px;
    padding: 0 1.2125em;
    text-decoration: none;
}

#access ul ul {

    display: none;
    float: left;
    margin-top: 0;
    position: fixed;
    top: 264px;
    left: 50%;
    width: 1000px;
    z-index: 99999;
    margin-left:-500px;
    text-align:center;
    padding-top:5px;
    padding-bottom:10px;

    background: red;
}

#access ul ul a {

    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    padding-bottom:10px;

}

#access ul li:hover > ul {
    display: block;
}

任何帮助都非常感谢欢呼。

彼得

1 个答案:

答案 0 :(得分:0)

首先,添加此规则

.sub-menu {
    text-align: center;
}

第二,改变

#access li {
    float: left;
    position: relative;
}

#menu-default > li {
    float: left;
    position: relative;
}

第三,添加此规则

.sub-menu > li {
    display: inline-block;
}