2013-10-25 77 views
0

想讓頂部導航中的「淺灰色」背景(在http://CappedIn.com上)橫跨整個屏幕。我想要的其餘內容就是這樣。任何想法如何做到這一點? HAML代碼包括:(它顯示了自舉類我使用)Twitter Bootstrap在屏幕上延伸背景

%body 
    %div.container-fluid 
    %div.row-fluid.top_nav 
     %div.span7 
     = render "/shared/navigation/top_left_nav.html.haml"   
     %div.span5 
     = render "/shared/navigation/top_right_nav.html.haml" 
    = yield 

謝謝!

回答

1

CSS -

.top_nav { 
    margin-left: -20px; 
    margin-right: -20px; 
    width: auto; 
    background: #EEEEEE; 
} 
+0

你是真棒先生。謝謝。 – slindsey3000