• Resolved nicolebmiller

    (@nicolebmiller)


    Hello,
    I’m using plugin version 0.4.1
    wordpress version 4.9.4
    Theme vision is my theme and
    using Smoothness.
    I am trying to make the background color transparent. I successfully changed the opacity but it also changed the opacity to the text and I want to leave that as is.

    I tried this (also tried with background color)

    .squelch-taas-override.squelch-taas-accordion .ui-accordion-header {
    color: rgba(160, 160, 160, 0.5)
    }

    but did not work. Is there a way to change the opacity to the background color while leaving the text?
    Thank you

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Matt Lowe

    (@squelch)

    Hi @nicolebmiller,

    You were close!

    
    .squelch-taas-override.squelch-taas-accordion .ui-accordion-header {
        background: rgba(160, 160, 160, 0.15) none;
    }
    

    That should do it. The only reason your background-color style didn’t work is because there is a background image that also needed turning off. The above code should do it.

    Thread Starter nicolebmiller

    (@nicolebmiller)

    It works
    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can I change the opacity of the background color?’ is closed to new replies.