Gradient background for question and change icon color

@Max I want to change the blue color to gradient color consist of two colors and also I want to change the arrow icon color to black when question opens up. Is that possible?

Also I want to keep the same gradient color on the question bar when it’s active. Is that possible?

2 Likes

Hi there, @user2283 :waving_hand:

Here is the code to apply a gradient background to the question section:

.eapps-faq-content-category-item-question {
    background: linear-gradient(135deg, #8a9474, #a8b096)!important;
}

As for changing the icon color, I’ve contacted your request to the devs. I’ll report back once they share a solution :slightly_smiling_face:

2 Likes

Here is the CSS code to change the color of the arrow icon with opened answer:

.eapps-faq-content-category-item-active 
.eapps-faq-content-category-item-question-icon {
  color: black;
  opacity: 1;
}

Give it a try and let me know how it worked :slightly_smiling_face:

2 Likes