How do I make my h1 text a gradient from #006768 to #2E0750.
I use Wordpress.
I basically want to achieve the following with code:
http://www.reading-college.ac.uk/sites/default/files/gradient-example.jpg
Can't post an image as lacking enough rep.
My site URL is:
http://79.170.44.112/activate-enterprise.co.uk/
I've searched online but can't seem to find a suitable solution?
UPDATE
This is the code I've tried:
h1.entry-title {
font-size: 72px;
background-image: -webkit-gradient(
linear,
left top,
right top,
color-stop(0.03, rgb(44,7,85)),
color-stop(0.76, rgb(0,103,107))
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
However it's still not showing on my homepage, rather reverting to #2E0750
SECOND UPDATE
Managed to get it work, since I reduced the font size, I had to change the locations accordingly as you couldn't really see the gradient change.