0

本当に明白な答えがあると確信していますが、私はこのページの上部にあるメニューを何時間も右側に配置しようとしてきました。

どの要素を微調整する必要があるか、またはWPテーマのCSSをオーバーライドする方法について何か考えはありますか?

/* Navigation Bar */

.nav-wrap {
    background-color:#FFFFFF;
    border-bottom:1px solid #D9D9D9;
}
#navigation {
    float:center;
    margin:0 10px 0 10px;
}
#navigation ul li ul li a{
    font-weight:normal !important;
}
#navigation ul {
    position:relative;
    width:100%;
}
#navigation ul li {
    position:relative;
    display:block;
}
#navigation ul li a {
    padding:0;
    text-decoration: none;
    display:block;
    letter-spacing:1px;
    height:30px;
    line-height:30px;
    margin-left:30px;
}
#navigation ul li:first-child a {
    margin:0 ;
}
.naviline {
    position:absolute;
    top:7px;
    left:12px;
    border-left:1px solid #D9D9D9;
}
#navigation ul li:first-child .naviline {
    display:none;
}
4

2 に答える 2

4

試す

#navigation {
    float: right;
    margin: 0 10px; /* same as 0 10px 0 10px */
}
于 2013-03-20T16:20:35.400 に答える
0

Try getting rid of the relative position and change the float center to float right?

于 2013-03-20T16:25:06.587 に答える