Hi
I used to love how easy it was to apply a CSS gradient to the background of a whole section, however that seems to be compltely gone now. How can I give one section the gradient generated by;
background: rgba(3,223,252,1);
background: -moz-linear-gradient(left, rgba(3,223,252,1) 0%, rgba(79,234,255,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(3,223,252,1)), color-stop(100%, rgba(79,234,255,1)));
background: -webkit-linear-gradient(left, rgba(3,223,252,1) 0%, rgba(79,234,255,1) 100%);
background: -o-linear-gradient(left, rgba(3,223,252,1) 0%, rgba(79,234,255,1) 100%);
background: -ms-linear-gradient(left, rgba(3,223,252,1) 0%, rgba(79,234,255,1) 100%);
background: linear-gradient(to right, rgba(3,223,252,1) 0%, rgba(79,234,255,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03dffc', endColorstr='#4feaff', GradientType=1 )
Thanks


