XF 2.2 Border around forum node on hover?

Inabizzle

New member
I'm trying to get a purple trim around the nodes on hover easing in and out im not sure how or where, could anyone help me please?

a17d4539a7a4040ce7c077044fe38274.png
 
It appears you may be using a theme. If you could send me a link to your site I'm sure I could figure it out for you in a couple minutes.

With default theme, this should work (place it in extra.less template):
CSS:
.node {
    transition: all .2s ease;
}
.node:hover {
    border: 2px solid #7386de;
}
 
Last edited:
Top Bottom