Change groupbox header style

0
I want to change the background color of the groupbox header from default grey to blue.  I tried changing the style property but it changes the style for the child elements of group box. How can I change the style of the groupbox header?
asked
1 answers
7

Hi Shardul,

Add a class to your group box in the appearance tab example ‘myclass’.

in your custom Css file or inside an html snippet write the following 

.myclass .mx-groupbox-header {
background: blue;
}

change the class name and color value based on what you need.

Thanks,

Sufian.

answered