hi how can I apply a gradient to the background colour of my site?
Site in question is http://217.199.187.190/bansteaddentalcare.com/
Its background colour is currently one flat colour and i’d like a gradient on that if possible?
Hi codecreative!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
html.html_boxed {
background: #25abcc;
background: -moz-linear-gradient(top, #25abcc 0%, #ffffff 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#25abcc), color-stop(100%,#ffffff));
background: -webkit-linear-gradient(top, #25abcc 0%,#ffffff 100%);
background: -o-linear-gradient(top, #25abcc 0%,#ffffff 100%);
background: -ms-linear-gradient(top, #25abcc 0%,#ffffff 100%);
background: linear-gradient(to bottom, #25abcc 0%,#ffffff 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#25abcc', endColorstr='#ffffff',GradientType=0 );
}
You can create gradients and copy codes from this site – http://www.colorzilla.com/gradient-editor/
Regards,
Yigit
Thank you works a treat