Also, I have this code to add thegradient on multi browser etc:
background: #590087;
background: -moz-linear-gradient(left, #590087 0%, #5040EC 100%);
background: -webkit-gradient(linear, left top, right top, color-stop(0%,#5040EC), color-stop(100%,#590087));
background: -webkit-linear-gradient(left, #590087 0%,#5040EC 100%);
background: -o-linear-gradient(left, #590087 0%,#5040EC100%);
background: -ms-linear-gradient(left, #590087 0%,#5040EC 100%);
background: linear-gradient(to right, #590087 0%,#5040EC 100%);
But the background I want is:
linear-gradient(26deg, rgba(89, 0, 135, 1) 0%, rgba(89, 0, 135, 1) 0%, rgba(80, 64, 236, 1) 44%, rgba(80, 64, 236, 1) 44%, rgba(44, 212, 217, 1) 100%, rgba(44, 212, 217, 1) 100%)
How do I apply this to the above?
Thanks for all your help.