Replies: 0
Hey!
I am trying to totally remove the gradient filter from the background (header-image) on Hitchcock theme. I just want the images to appear as inserted in the library.
No success until now with the followings:
~CSS editor
.header-image{
filter:none; !important
background:transparent; !important
}
~style.css
.header-image:after {
background: transparent;
filter:none; !important
background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0)));
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 100%);
background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(29,29,29,1) 100%);
background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 100%);
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’#331d1d1d’, endColorstr=’#1d1d1d’,GradientType=0 );
}
or even deactivating the block as comments…
Any help/suggestion?