Hi,
How to add CSS gradient effect as an Alt background for full-width layout and also full-width text block.
The css gradient in question is :
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #A34B67),
color-stop(0.95, #4C51DE)
);
background-image: -o-linear-gradient(bottom, #A34B67 0%, #4C51DE 95%);
background-image: -moz-linear-gradient(bottom, #A34B67 0%, #4C51DE 95%);
background-image: -webkit-linear-gradient(bottom, #A34B67 0%, #4C51DE 95%);
background-image: -ms-linear-gradient(bottom, #A34B67 0%, #4C51DE 95%);
background-image: linear-gradient(to bottom, #A34B67 0%, #4C51DE 95%);
I would like to add this on the home page full-width text block.
regards
celeste