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

    I am looking for a way to change the background transparency of the accordion slider as is done in the demo here:
    Kriesi DJ page demo

    I found a thread in the forum to do the color via quick CSS:

    p.toggler {
    background-color: #be202d !important;
    }
    
    p.toggler strong {
    color: white !important;
    }

    But not for transparency.

    • This topic was modified 6 years, 9 months ago by markvanhaze.
    #911137

    Hey markvanhaze,

    Try using this css code:

    #top p.toggler,
    #top .toggle_content {
      background-color: rgba(0,0,0,0.5) !important;
    }

    Hope it helps :)

    Best regards,
    Nikko

    #911147

    Thanks, that works. Can you just tell me how to change the color with the same CSS?

    #911155

    Hi,

    Try adding color attribute. Hope it helps :)

    #top p.toggler,
    #top .toggle_content {
      background-color: rgba(0,0,0,0.5) !important;
      color: white !important;
    }

    Best regards,
    Nikko

    #911169

    Is that supposed to change it to white? Its doesnt seem to do anything.

    • This reply was modified 6 years, 9 months ago by markvanhaze.
    #911181

    Hi,

    Yes, can you give us a link to the page on your site showing the toggle? so we can check why it isn’t working. You can post the link in private content, so it is only visible to us (moderators) and you (thread creator).

    Best regards,
    Nikko

    #911202
    #911209

    Hi,

    I see, try adding this css code in Quick CSS:

    #top .toggle_content h4 {
      color: white !important;
    }

    Hope this helps :)

    Best regards,
    Nikko

    #911212

    Unfortunately, no.

    #911216

    Hi,

    Are you referring to the title? try adding this css code:

    #top .all_colors .toggler strong {
        color: #fff;
    }

    Best regards,
    Nikko

    #911355

    Hello Nikko,

    I might not explain myself correctly – I mean the background color of the accordion. Its translucent grey and I want it to be translucent white.

    #911465

    Hi,

    I see, sorry for misunderstanding, try changing this code I gave before:

    #top p.toggler,
    #top .toggle_content {
      background-color: rgba(0,0,0,0.5) !important;
      color: white !important;
    }

    to:

    #top p.toggler,
    #top .toggle_content {
      background-color: rgba(255,255,255,0.5) !important;
    }

    just adjust the 0.5 value (50% opacity), 1 is the maximum which means no transparency and 0 is the minimum which will make it just transparent. Try to use 0.3 – 0.7. Hope this helps :)

    Best regards,
    Nikko

    #911561

    You got it. Thanks for your great help Nikko.

    One more question – how can I change the font size for the toggle headers?

    • This reply was modified 6 years, 9 months ago by markvanhaze.
    #911624

    Hi markvanhaze,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    #top .all_colors .toggler strong {
      font-size: 14px;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #911699

    Your support is second to none. Thanks. Ticket closed.

Viewing 15 posts - 1 through 15 (of 15 total)
  • You must be logged in to reply to this topic.