Hi, I am pretty new to wp and pagelines and css.
But I found a site to create the css for the gradient I want for the background to my site. Here's how I added it to Custom Css in Pagelines Lite.
But nothing shows up. So other than the actual gradient code, there must be something obvious Css-related I'm not doing. Anyone able to help? Thanks in advance.
//** This gradient background code was created using this website: www.colorzilla/gradient-editor/ **//
.gradient-bg {
background: #bcd9f6;
/* Old browsers */
background: -moz-linear-gradient(left, #bcd9f6 0%, #0d3d57 89%, #0a2b3f 100%);
/* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,#bcd9f6), color-stop(89%,#0d3d57), color-stop(100%,#0a2b3f));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, #bcd9f6 0%,#0d3d57 89%,#0a2b3f 100%);
/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, #bcd9f6 0%,#0d3d57 89%,#0a2b3f 100%);
/* Opera 11.10+ */
background: -ms-linear-gradient(left, #bcd9f6 0%,#0d3d57 89%,#0a2b3f 100%);
/* IE10+ */
background: linear-gradient(to right, #bcd9f6 0%,#0d3d57 89%,#0a2b3f 100%);
/* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bcd9f6', endColorstr='#0a2b3f',GradientType=1 );
/* IE6-9 */
}