• Resolved serro

    (@serro)


    Hi guys,
    I am desperately trying to find a way to make the white content area below my text a little transparent. I found ways to make the actual website background transparent but not the content area.

    This is my website (https://www.salutberlin.de). I am using the Responsive Theme.
    I think it would look nicer if the content area was transparent / opaque.

    Many thanks for your help.

    Serro

Viewing 14 replies - 1 through 14 (of 14 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Can you describe more on which part of the page you want transparent?

    Thread Starter serro

    (@serro)

    Yes, sure. Basically the white content box behind my text.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Do you have a place in the dashboard to hold CSS modifications (other than in theme files)?

    Thread Starter serro

    (@serro)

    yes thats all set up. just need to code to edit but i am not css savvy at all :-s

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    What stuff have you tried so far?

    Thread Starter serro

    (@serro)

    i have not tried inserting any codes that might help me to make the content box transparent. all i found was for the background image but thats not what i am looking for.

    do you have any suggestions? anything helps really

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    #wrapper { background: transparent; }

    https://www.w3schools.com/cssref/pr_background-color.asp

    Thread Starter serro

    (@serro)

    cool thanks. but where can i put this? right in the style.css of my child thme?

    also i found this. can i use the below too? guess here i can change the opacity, no?

    .wrapper {
    background-color: #FFFFFF;
    margin: 0 auto;
    opacity: 0.9;
    padding: 0 20px 15px;
    width: 940px;
    }
    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Do you have a place in the dashboard to hold CSS modifications (other than in theme files)?

    Thread Starter serro

    (@serro)

    guess i got you wrong. no, i dont have this in my dashboard. can i not put this somewhere in my style.css?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    You can put it in the bottom of your Child Theme style.css file, or if you had a part of the dashboard named something like “Custom CSS” you could put it there, either/or.

    Thread Starter serro

    (@serro)

    it worked but it made it completely transparent. is there a code where i can adjust the opacity?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    If you want a translucent background use ‘rgba’ instead of ‘transparent’.

    Basically go to this site https://css3generator.com/ , select ‘RGBA’ from its drop down, get the opacity/translucency to what you want and then copy this part (example):

    background-color: rgba(0, 0, 0, .5);

    And paste it over this part:

    background: transparent;

    Thread Starter serro

    (@serro)

    YEAH! thanks a lot for your help. much appreciated.

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘Opaque / transparent content area in Responsive Theme’ is closed to new replies.