Accordion

Hello, 

I am trying to change the bgcolor of my accordion from #ffff to #222224. I did not find any functionality within the BeThemes options. How can I change the colors? Only changing font colors seems to be possible. 
Thanks,

Anand

Comments

  • Hi, the only way to change the colors is custom CSS
    To change the header background use:

    .accordion .question .title {
    background-image:none !important;
    background:#222224 !important;
    }
    To change the background of the content use this css
     .accordion .question .answer {
    background:#222224 !important;
    }
    To change the font color inside them just add color:#fff !important; to each.
    thanks
Sign In or Register to comment.