Transparency and centered Logo

Discussion in 'ColorWay WordPress Theme' started by jkfcbef, May 16, 2015.

  1. jkfcbef

    jkfcbef New Member

    Joined:
    May 16, 2015
    Messages:
    1
    Likes Received:
    0
    Hi guys!

    I hope you are all enjoying your weekend!

    I have just bought the ColorwayPro theme, intending to run a non-profit website for a local soccer club (www.fcb-erfurt.net).

    Here are two questions to begin with.

    1)

    I'd like the white blog-background to be a bit transparent, so that the background image is able to shine through (like here: www.fcb-2008.net, also one of my teams). I was intending to use

    #page { background: rgba(255,255,255,.80); }

    but it doesn't work. Where am I wrong?

    2)

    The logo on top of the page is supposed to be centered. How's that going to work out?


    Thanks guys!
    TTYL,
    Josef
     
  2. sameerwalkar

    sameerwalkar Guest

    Hello,

    Hope you had a great weekend!!!!

    1. To make the logo center kindly apply the below CSS:

    Code:
      .logo{{
      text-align: center;
      }
    2. To make background transparent apply CSS
    Code:
     .container{
      opacity: 0.8;
      }
    
    Hope it will solve your issue.
     
  3. josefkuhnt

    josefkuhnt New Member

    Joined:
    May 16, 2015
    Messages:
    4
    Likes Received:
    0
    Hi.

    Centering the logo was easy.

    However, making the background transparent according to your description did not work out as I wish. Using your css-command, the entire container becomes transparent, including the images. Now, what I'd like is to be the background of the container to be transparent but to a certain degree but not the images. Does that work somehow?

    Thank you a lot!
    Josef
     
  4. josefkuhnt

    josefkuhnt New Member

    Joined:
    May 16, 2015
    Messages:
    4
    Likes Received:
    0
    Problem solved:

    Code:
    .container{ background-color: rgba(255,255,255,0.75) }
    was the rigth code.
     

Share This Page