Thanks Rad. It worked. But on most pages, there is still the black background. I went to each section, column and element and ensure that the background there was neither transparent or no background. Also the background on the header, footer also remained black. On some elements, like the Accordion & text, the background is also black. Do you know why?
I did as you suggested and pasted the CSS generated:
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,2d2d2d+25,0f0f0f+46,232323+58,1e1e1e+63,383838+76,0f0f0f+95,000000+97,000000+100 /
background: rgb(0,0,0); / Old browsers /
background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(45,45,45,1) 25%, rgba(15,15,15,1) 46%, rgba(35,35,35,1) 58%, rgba(30,30,30,1) 63%, rgba(56,56,56,1) 76%, rgba(15,15,15,1) 95%, rgba(0,0,0,1) 97%, rgba(0,0,0,1) 100%); / FF3.6-15 /
background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%,rgba(45,45,45,1) 25%,rgba(15,15,15,1) 46%,rgba(35,35,35,1) 58%,rgba(30,30,30,1) 63%,rgba(56,56,56,1) 76%,rgba(15,15,15,1) 95%,rgba(0,0,0,1) 97%,rgba(0,0,0,1) 100%); / Chrome10-25,Safari5.1-6 /
background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(45,45,45,1) 25%,rgba(15,15,15,1) 46%,rgba(35,35,35,1) 58%,rgba(30,30,30,1) 63%,rgba(56,56,56,1) 76%,rgba(15,15,15,1) 95%,rgba(0,0,0,1) 97%,rgba(0,0,0,1) 100%); / W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ /
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’#000000’, endColorstr=’#000000’,GradientType=0 ); / IE6-9 */
For my learning purpose, may I ask: the first line of this CSS code looks rather strange. It starts with:
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-… etc.
That is supposed to be part of the code?