問題描述
雙行導航欄 - 是什麼原因造成的? (double row navigation bar- what's causing it?)
Live site.
I think I've been working a little too long on too little sleep to get this site completed. The navigation bar, for some reason I can't seem to find, has resorted to being two levels, regardless of the amount of space I give the links and searchform. Any ideas on what's causing the second row? Ideally, it should all be one row, with even spacing between the far left link and the right side search form.
Thank you.
參考解法
方法 1:
it because of the padding:
#branding .only-search + #access div {
padding-right: 205px;
}
and the margin:
#access div {
margin: 0 7.6%;
}
Reduce both of the padding and margin
方法 2:
padding-right:205px;
in your style.css
on line 728
is causing this.
Reduce padding accordingly.
(by AMC、Alireza41、Ahsan Khurshid)