How to make server logo hover on xenforo?

Status
This thread has been locked.

Auzarx

Banned
Feedback score
3
Posts
90
Reactions
15
Resources
0
Hey! I was wondering if I could have the code and where to put it on to have the logo automatically hover or have it hover when u put ur cursor over it.'


Thanks!

:D
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Glitch

Website Developer
Supreme
Feedback score
32
Posts
426
Reactions
114
Resources
0
This code might work:
#logo {
transition: 0.3s;
}

#logo:hover {
transform: scale(1.5)
}

You can use other css like hover.css
 

Auzarx

Banned
Feedback score
3
Posts
90
Reactions
15
Resources
0
This code might work:
#logo {
transition: 0.3s;
}

#logo:hover {
transform: scale(1.5)
}

You can use other css like hover.css
where would I put this?
 
Banned forever. Reason: Ban Evading (ArialSetups)

oGwola

Feedback score
2
Posts
15
Reactions
2
Resources
0
You would put that in your style sheet. You just have to make sure the #logo is replaced with whatever your class is.
 
Last edited:
Status
This thread has been locked.
Top