XF 2.1 Gradient CSS Username Issue

Damien Alexander

Active member
I'm using a Gradient Color for an entire usergroup. It comes out with the gradient how like it but near the end of the username (of any user in this group) a tiny little bit of the name is missing:

1568826932978.webp

As you can see the O in the username isn't fully complete.

In topics it's more noticeable:

1568827002857.webp



What can I do to fix this? Here is the CSS Code I use on the usergroup: (I didn't make this code, I got it off the internet and simply added the color hex codes I wanted)


CSS:
background-image: -webkit-gradient( linear, left top, right top, color-stop(0, #a80077 ), color-stop(1, #66ff00 ) );
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: bold;
  font-style: italic;
 
Top Bottom