Hello,
There is something i don't understand, this CSS code works fine in Codepen for example.
When i mouse-over the link it is not underlined
But in Xenforo the same code in extra.less, the link is underlined when mouse-over. (even with !important)
Can you explain this ?
Thanks !
There is something i don't understand, this CSS code works fine in Codepen for example.
When i mouse-over the link it is not underlined
CSS:
.ask a {
text-decoration: none;
}
.ask:hover {
background: rgb(232, 232, 232);
box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}
.ask {
border: 1px solid #ebebeb;
border-radius: 3px;
background: rgb(238, 238, 238);
padding: 8px 15px;
font-weight: 400;
}
But in Xenforo the same code in extra.less, the link is underlined when mouse-over. (even with !important)
Can you explain this ?
Thanks !