2014-12-04 63 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; 
}