Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #424573

    Hello, how do I control the opacity of the background area logo?

    #424638

    Hey mleite1!

    Please add following code to Quick CSS

    #header.av_header_transparency {
      background-color: rgba(255,255,255,0.2);
    }

    255,255,255 is RGB value of the color and 0.2 is opacity level

    Cheers!
    Yigit

    #425293

    Hello, Yigit put your code and came no effect. Nothing changed.
    What can I do?

    LINK
    http://quintadaslagoas.com.br/2015/?page_id=146

    #425299

    Hey!

    Please add following code to Quick CSS if you would like to display a solid color

    #header {
      background: #e7e5dc;
    }

    If not, please elaborate on the changes you would like to make

    Cheers!
    Yigit

    #425313

    Yigit, I just want to control the transparency of the area menu soon. With these two codes that passed me I do it? The first had no effect. The second was no transparency.

    See the code I am using
    # {header.av_header_transparency
       background-color: RGBA (255,255,255,0.1);
    }
    #header {
       background: # e7e5dc;

    #425318

    Hi!

    Please fix your code, it should look like following

    #header.av_header_transparency {
       background-color: RGBA (255,255,255,0.1);
    }
    #header {
       background: # e7e5dc;
    }

    As i said, second code will make it solid color and first color will adjust the transparency of transparent header

    Cheers!
    Yigit

    #425354

    Any value that I put in opacity does not change the state. Is always equal to any value. The opacity does not change.

    0.1 or 0.5 or 1.0 not change

    I pulled out the color code. I’m working with only the first code you sent.

    Are you understanding what I want?

    #426305

    Hi!

    Can you please post a screenshot and show the changes you would like to make so we can make sure that we are on the same page? You can upload your screenshots on imgur.com or Dropbox public folder and post the links here

    Best regards,
    Yigit

    #426482

    See the link below that I can not make more transparent the HEADER. The code does not let me control the opacity.

    LINK
    http://quintadaslagoas.com.br/2015

    #426991

    Hi!

    The link is not working. Is 2015 a folder? I tried to visit the index site but it keeps on loading. Please check.

    Cheers!
    Ismael

    #427012
    #427285

    Hi!

    Use this to change the header transparency:

    .header_bg {
      opacity: .5;
      filter: alpha(opacity=50);
    }

    Cheers!
    Ismael

    #427571

    Perfect Ismael.

    Thanks

    #427591

    I used the same code on the client hot site and did not work? What is the difference from one site to another?

    SITE THAT WORK
    quintadaslagoas.com.br

    SITE THAT DID NOT WORK
    quintadaslagoas.com.br/alagoinhas

    #427974

    It’s because that’s not a boxed layout so you need to set that background image as the header background – http://screencast.com/t/vR43THrO

    Best regards,
    Josue

    • This reply was modified 9 years, 7 months ago by Josue.
Viewing 15 posts - 1 through 15 (of 15 total)
  • You must be logged in to reply to this topic.