2016-01-18 244 views
-1

嗨,每個人我都有一個導航欄問題與我的網站。導航欄覆蓋內容。我環顧四周,很多人似乎看起來像是在爲他們工作。我的問題是它編輯邊距,但我的導航欄也隨之移動。我找不到一種只移動內容而不是導航欄的方法。BootStrap導航欄問題

/* fix fixed-bar */ 
body { padding-top: 40px; } 
@media screen and (max-width: 768px) { 
body { padding-top: 40px; } 
} 

/* fix fixed-bar jumping to in-page anchor issue */ 
*[id]:before { 
display: block; 
content: " "; 
margin-top: -75px; 
height: 75px; 
visibility: hidden; 
} 
+0

讓我知道你是否需要鏈接到網站。 – user3395284

+1

請將[JsFiddle](http://jsfiddle.net)或給我們提供一個鏈接 – Simplicity

+0

請將**位置:relative; **添加到您的班級,並用頂部替換margin-top ...加上jsFiddle這些場景是必須的 – ymz

回答

0

你可以嘗試創建CSS類,然後把所有的內容一個div標籤建立該專區與類中,像這樣:

CSS:

.contentclass{ 
    /*your customized properties here 
} 

HTML:

<div class="contentclass"> 
    <!--your content here--> 
</div> 

告訴我它是怎麼回事。

+0

我通過採用導航欄CSS並將其與主體分開添加來修復它。謝謝你幫助我。 – user3395284

+0

很高興幫助=) – jsanchezs