Position and opacity of slider caption background

Discussion in 'Cloriato WordPress Theme' started by billgallagher, May 10, 2013.

  1. billgallagher

    billgallagher New Member

    Joined:
    May 10, 2013
    Messages:
    9
    Likes Received:
    0
    I want to move my slider caption up a bit and make the background more opaque so that the text is more legible. I have the pro version installed now at gallaghertraining.com
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    #slides .caption {
    bottom: 90px;
    background: rgba(255, 255, 255, 0.2);
    }
     
  3. billgallagher

    billgallagher New Member

    Joined:
    May 10, 2013
    Messages:
    9
    Likes Received:
    0
    I did that and changed .2 to 1 for 100% successfully. But... Nothing I enter for bottom moves the caption up. How do I move the caption up some pixels so it doesn't cover the faces in my image?
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    #slides .caption {
    bottom: 140px!important;
    }
    This will solve your issue.
     

Share This Page