2014-12-04 62 views

回答

2

使用,

.topmenu a, .topmenu a:visited, .submenu a, .submenu a:visited { 
text-decoration: none; 
} 

你總是可以嘗試firebug,這是前端Web開發者最有用的工具。

+0

我想在其他地方強調:)。 – 2014-12-04 12:19:07

+0

已更新,請檢查。 – 2014-12-04 12:21:14

+0

謝謝!我過得很艱難。 – 2014-12-04 12:23:50

2

在你的base.css文件,

.topmenu a, .topmenu a:visited { 
    color: #0A95C5; 
    text-decoration: none; 
    outline: 0; 
} 
2

試試這個

nav a { 
text-decoration: none!important; 
} 

在你提到那裏的鏈路只

nav a:hover, nav a:visited { 
color: #FFF; 
text-decoration: none!important; 
}