2015-03-08 192 views
0

我有這個網站:如何更改箭頭的顏色?

http://dl.dg-site.com/

在這個網站,我們有一個菜單箭頭灰色...

我怎樣才能改變白色箭頭,而無需修改別的顏色嗎?

我發現這裏的代碼......並且不改變顏色,但只有箭頭

header, 
    nav>ul ul, 
    #magic-line, 
    #topbar.announcement_bar_style_3, 
    #topbar.announcement_bar_style_2, 
    #topbar.announcement_bar_style_1, 
    .testimonial_small p, 
    .ABs_pricing-table-2 .ABs_pricebox_feature:last-of-type{ 
     border-bottom-color:#969696 !important; 
    } 

你能幫我解決這個問題?

在此先感謝!

回答

0
#magic-line { 
    border-bottom-color: #fff !important; 
} 

!important聲明是必需的,因爲它會覆蓋您在問題中顯示的規則。一般你應該避免使用! important

雖然我懷疑這是一個現成的WordPress主題,並且您在問題中顯示的規則會通過主題注入到頁面中,因此您可能無法直接對其進行編輯。在這種情況下,!important將是必需的,您需要確保新規則出現在設置灰色邊框顏色的規則之後。

如果出於某種原因,您無法在主題生成樣式之後加載自定義樣式,那麼您需要一個更具體的規則以確保它優先。

nav #magic-line { 
    border-bottom-color: #fff !important; 
} 
相關問題