How add add "gif" effect to username?

jommytonny888

Well-known member
Registered
Joined
May 31, 2022
Messages
166
Points
28

Reputation:

Hello,I have gif files. I put them inside my server data/images directory but even with code it does not work.
What codes are you using?
I tried upload it. Used this code
background: url(https://ibb.co/vmCctDK) repeat scroll 0 0%;
color: #FF0000;
font-weight: bold;
text-shadow: 0 0 5px #fff, 0 0 5px #f00, 1px 1px 0 #f00;

If using from my server,do you use full links? xenforo folders do have permissions so im lot where are problems maybe someone can help.
 

one_finger_man

Well-known member
Registered
Joined
Jan 20, 2022
Messages
383
Points
53

Reputation:

did you check your admin and check the box Imagemagick PECL extension if that is on your server
 

jim

Well-known member
Registered
Joined
Aug 20, 2021
Messages
112
Points
38

Reputation:

I have an assets directory in my root server containing the gifs , which one of them is mod.gif.
So in my case i don't have to use full URL's.

And no, you don't need the Imagemagick extension for sparkle usernames; you only need to enable it if you want gif avatars.


Here's what i use for my moderators usergroup
CSS:
color: Crimson;
font-weight: bold;
text-shadow: 0px 2px 7px #dc143c;
background: url(assets/mod.gif) repeat scroll 0% 0% transparent;

Screenshot_4.png
 
Last edited:

one_finger_man

Well-known member
Registered
Joined
Jan 20, 2022
Messages
383
Points
53

Reputation:

I have an assets directory in my root server containing the gifs , which one of them is mod.gif.
So in my case i don't have to use full URL's.

And no, you don't need the Imagemagick extension for sparkle usernames; you only need to enable it if you want gif avatars.


Here's what i use for my moderators usergroup
CSS:
color: Crimson;
font-weight: bold;
text-shadow: 0px 2px 7px #dc143c;
background: url(assets/mod.gif) repeat scroll 0% 0% transparent;

View attachment 29538
jimjust add that to the users group Username CSS and make sure your path is to the image
 
Top