我已經從http://html5up.net/prologue下載了HTML5模板。該模板是響應式的。默認模板帶有nav
上的4個項目,如下所示: 無法添加更多指向導航的鏈接
我想向nav
添加更多項目。所以我修改nav
加入兩行代碼爲ff
和gg
:
<nav id="nav">
<ul>
<li><a href="#top" id="top-link" class="skel-layers-ignoreHref"><span class="icon fa-home">Intro</span></a></li>
<li><a href="#portfolio" id="portfolio-link" class="skel-layers-ignoreHref"><span class="icon fa-th">Portfolio</span></a></li>
<li><a href="#about" id="about-link" class="skel-layers-ignoreHref"><span class="icon fa-user">About Me</span></a></li>
<li><a href="#contact" id="contact-link" class="skel-layers-ignoreHref"><span class="icon fa-envelope">Contact</span></a></li>
<li><a href="#ff" id="contact-link2" class="skel-layers-ignoreHref"><span class="icon fa-envelope">ff</span></a></li>
<li><a href="#gg" id="contact-link3" class="skel-layers-ignoreHref"><span class="icon fa-envelope">gg</span></a></li>
</ul>
</nav>
但現在當我滾動nav
不能正確更新。它的工作原理高達淨資產值4項(因爲是默認值),但沒有任何超越4參見下面的例子:
我該如何解決這個問題?對於導航改變/影響,css中沒有太多內容。
編輯
我加入,我已經添加到頁面的body
的代碼。
<!-- Contact (given in the template) -->
<section id="contact" class="four">
<div class="container">
<header>
<h2>Contact</h2>
</header>
</div>
</section>
<!-- I've added the two sections below -->
<section id="ff" class="five">
<div class="container">
<header>
<h2>Contact</h2>
</header>
</div>
</section>
<section id="gg" class="six">
<div class="container">
<header>
<h2>Contact</h2>
</header>
</div>
</section>
標題爲同爲過去三年,即接觸。但是,'id'不一樣。你的回答也有一個錯誤,就是'id'必須等於導航的'href',即'
Erobrere
請參閱編輯 – Erobrere
我已經更新了我上面的答案,請參閱更新的導航代碼。 –