我使用從引導一個主題,並想從同一個網站,來與它自己的文件添加一個新的聯合國風格的主題頁面:
如何將其他主題添加到Bootstrap Web項目?
css
--bootstrap.css
--bootstrap.min.css
--style.css
js
--bootstrap.js
--bootstrap.min.js
--jquery-1.11.0.js
newpage.html
至於我可以告訴大家,只有newpage.html
和style.css
文件與我已有的當前主題不同。我在我的項目中添加了newpage.html
和style.css
。但是,當我打開新頁面時,內容就在那裏,但似乎缺少所有的CSS和js組件。我懷疑這可能是一個路徑問題。
我的項目結構,新的文件,看起來像這樣(簡化):
css
--style.css
js
pages
--newpage.html
index.html
在newpage.html文件,CSS和JS的鏈接,像這樣:
<link href="/css/bootstrap.min.css" rel="stylesheet">
<link href="/css/style.css" rel="stylesheet">
<script src="/js/jquery-1.11.0.js"></script>
<script src="/js/bootstrap.min.js"></script>
所有這些文件都在那裏並佔了。當我鏈接到新的頁面時,我不得不使用這個路徑:"./pages/newpage.html"
我在做什麼錯了?
這是它!謝謝#arinh – ahetman 2014-10-03 18:31:24