2014-05-08 30 views

回答

1

每次滾動的項目它根據您的導航你的情況,你寫的風格。左類像

#project .left { 
    background: url("../images/arrow_left_home.png") no-repeat scroll center center rgba(0, 0, 0, 0); 
    height: 38px; 
    top: 43%; 
} 

有你有頂級增值類.leftright.item請時間嗨在引導旋轉木馬改變類名或最高值..它會work.hope它會幫助

+0

太容易了,謝謝! – Ruben

+0

我會稍後在家裏嘗試這個,然後我會接受 – Ruben

+0

@Ruben很高興它有幫助:-) –

0

你看到white space因爲top價值定義在下面的類。

刪除top屬性,該錯誤將被修復。

#project .left 
{ 
top: 43%; /*disable this property*/ 
} 
1

從我(非常近期的)經驗:請確保您有沒有使用任何「狡猾」全球.left.right類。在我的情況下,問題是這樣一個錯誤的全球.right類,與float: right;分配給它。

+0

true,你也可以在Bootstrap中使用'pull-left/right' – Ruben