Main Container Opacity

Discussion in 'ColorWay WordPress Theme' started by seenacs, Apr 5, 2013.

  1. seenacs

    seenacs New Member

    Joined:
    Jan 4, 2013
    Messages:
    12
    Likes Received:
    0
    I'm trying to change the opacity of the main white container in the center of the pages. I've got a background image that I want to show through behind that center section.

    Can someone either provide the code to make that change, or guide me to where the code is controlling the color/design of the main container so I can make the change?
     
  2. seenacs

    seenacs New Member

    Joined:
    Jan 4, 2013
    Messages:
    12
    Likes Received:
    0
    .container {
    background: rgba(255, 255, 255, 0.3)!important;
    }

    .footer-container {
    background: rgba(0, 204, 0, 0.3)!important;
    }

    .footer-navi {
    background: rgba(0, 102, 0, 0.6)!important;
    }


    Found an older thread with similar issue, and made it work. The footer rgb is based on the green theme for those who need it.
     
  3. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    You can also paste the following code instead of the above code, in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    .container {
    background: rgba(255, 255, 255, 0.3)!important;
    }
    .footer-container {
    opacity: .5;!important;
    }
    .footer-navi {
    opacity: .5;!important;
    }
    
    This will work on all theme color scheme.
     

Share This Page