Hey, so I need help with my PT mod. It's a simple problem.
When i'm making a Layer, how do I make the layer color a special effect (such as Honor from PT) or a gradient? Help would be greatly appreciated.
Thanks,
Gigagold
Hey, so I need help with my PT mod. It's a simple problem.
When i'm making a Layer, how do I make the layer color a special effect (such as Honor from PT) or a gradient? Help would be greatly appreciated.
Thanks,
Gigagold
probably with CSS
give your layer element thing a class, then get a css file and put this in your css file:
.class-name-here {
background-color: linear-gradient(45deg, red, orange)
}
this will make a 45 degree gradient of red then orange, you can replace those words of color to hex codes, if you want a very specific color, you can also change the degrees to whatever you want.
or sign up to leave a post.