Before you ask please READ THIS

Bottom Fade effect on Album slider

Hi
On my Home Page newsite.easyscene.ch I set up my slider. I just wish to reduce the fade effect on the bottom. How can I do it? Do you have a specific CSS? Thanks!

Comments

  • AirAir
    Posts: 10,970
    Hello:-)

    You want to reduce it or switch it off?
    If switch off, then edit your album and turn off "Gradient above photos".

    With kind regards.
  • Hello

    I just wish to reduce the gradient. Thanks!
  • AirAir
    Posts: 10,970
    Use this custom CSS:

    #a13-slider.gradient a.slide::after{
    /* from http://www.cssmatic.com/gradient-generator#'\-moz\-linear\-gradient\(top\,\ rgba\%280\%2C0\%2C0\%2C0\%29\ 44\%25\%2C\ rgba\%280\%2C0\%2C0\%2C0\.28\%29\ 57\%25\%2C\ rgba\%280\%2C0\%2C0\%2C0\.8\%29\ 85\%25\%2C\ rgba\%280\%2C0\%2C0\%2C0\.8\%29\ 100\%25\%29\%3B' */
    background: transparent;
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 44%, rgba(0,0,0,0.28) 57%, rgba(0,0,0,0.8) 85%, rgba(0,0,0,0.8) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 44%, rgba(0,0,0,0.28) 57%, rgba(0,0,0,0.8) 85%, rgba(0,0,0,0.8) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0) 44%, rgba(0,0,0,0.28) 57%, rgba(0,0,0,0.8) 85%, rgba(0,0,0,0.8) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,0) 44%, rgba(0,0,0,0.28) 57%, rgba(0,0,0,0.8) 85%, rgba(0,0,0,0.8) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 44%, rgba(0,0,0,0.28) 57%, rgba(0,0,0,0.8) 85%, rgba(0,0,0,0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
    }
    Play with percents in this code, or generate your own on http://www.cssmatic.com/gradient-generator

    With kind regards.
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!