Override Defaults¶
Remove underline in links with CSS¶
Source As I expected, you are not applying text-decoration: none; to an anchor \(.boxhead a\) but to a span element \(.boxhead\).
Try this:
.boxhead a {
color: #FFFFFF;
text-decoration: none;
}