• Hello everyone, i would like to know if its possible to make the consent message background to be transparent. I tried using custom css code to my theme but i guess i cant make it to work. I used chrome inspector, copied with the selector and then pasted
    the code to my themes custom css:

    div.cookie-notice-container{background-color: rgba(230,0,0,0.2);} .

    The color changes but there is no transparency.

    • This topic was modified 6 years, 3 months ago by dishonored.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author dFactory

    (@dfactory)

    div#cookie-notice{background-color: rgba(230,0,0,0.2) !important;}

    Have you tried using background-color: rgba(10,10,10,0.0); ?

    Thread Starter dishonored

    (@dishonored)

    !important was the issue. Thanks for the answer.

    div#cookie-notice{background-color: rgba(230,0,0,0.2) !important;}

    This worked!

    Glad you found the answer especially since now that I reread your original note said you were trying rgba. Sorry for not suggesting !important instead. I’ve learned that I need to read better. ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to make background transparent’ is closed to new replies.