Search code examples
htmlcssvbulletin

CSS - Two backgrounds?


I've got some code which I am running on my vBulletin system which sets a gradiented username colour based on two profile fields. However, I want to add sparkles to it, how do I go about it?

<span style="-webkit-text-fill-color:transparent; background:-webkit-gradient(linear, left top, right top, color-stop(0, COLOUR1), color-stop(1, COLOUR2)); background-size:0; text-shadow:none; -webkit-background-size:auto; -webkit-background-clip:text; font-weight:bold;">Forum Name</span>

How do I go about adding this sparkle code to the equiation?

  background: url(custom/v2/sparkles/sparkle-rainbow.gif) !important;

Thanks in advance!


Solution

  • Just add the url(custom/v2/sparkles/sparkle-rainbow.gif) to the end of background part:

    span{
      -webkit-text-fill-color: transparent;
      background:  -webkit-linear-gradient(transparent, transparent),  url(http://www.myspacehippo.com/files/glitterbacks/bg345.gif) repeat;
      background-size: 0;
      text-shadow: none;
      -webkit-background-size: auto;
      -webkit-background-clip: text;
      font-weight:bold;
    }
    

    In action

    span{
    	font-size:100px;
    	font-family:impact;
      -webkit-text-fill-color: transparent;
      background: -webkit-linear-gradient(transparent, transparent), url(http://www.myspacehippo.com/files/glitterbacks/bg345.gif) repeat;
      text-shadow: none;
      -webkit-background-size: auto;
      -webkit-background-clip: text;
      font-weight:bold;
    }
    <span>This Text</span>