slider content entry background

Discussion in 'ColorWay WordPress Theme' started by belboschi, Feb 3, 2013.

  1. belboschi

    belboschi New Member

    Joined:
    Mar 26, 2012
    Messages:
    2
    Likes Received:
    0
    Hi there,
    I'm trying to reduce the opacity for the slider content entry and unfortunately I'm not succeeding.
    Here's the code I have:
    .slide .slide-content.entry {
    width: 300px;
    left: 0px;
    bottom: 40px;
    padding: 10px 20px;
    position: absolute;
    font-size: 13px;/*background-color: rgba(0, 0, 0, 1);*/
    }

    Please let me know if I'm looking on the right place or if I should be looking elsewhere.
    Thank you.
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .slide .slide-content.entry {
    opacity: .6;
    }
    Adjust its value as per your requirements.
     
  3. belboschi

    belboschi New Member

    Joined:
    Mar 26, 2012
    Messages:
    2
    Likes Received:
    0
    Hello Gourav,
    Thank you for your prompt reply. I followed your intruction with the opacity css for the slider text holder, the problem is that is also changin the opacity for the text as well. I was hoping to only change the text container. Any suggestions?
    Thank you,
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .slide .slide-content.entry {
    background: rgba(255, 255, 255,0.3)!important;
    }
     

Share This Page