360
Views
6
Comments
Solved
how to change the color of an accordion item?
Application Type
Traditional Web
I'm trying to change an accordion item so that it turns green when the fields are filled in, but I can't edit the colors

2020-09-01 10-42-42
Stefano Valente
Solution

In your browser, right click Inspect and see the css of your accordion. You will see this is the css that allows you to change it:


2021-09-30 18-38-59
Nuno Ricardo Rodrigues
Solution

Hello @Rafael Moreira again,

You can use the class "background-green" to add background color green or "text-green" to add the text green.

Hope it helps,

NunoR

2024-01-31 05-29-41
Akshay Deshpande
Solution

Hello Rafael Moreira,

if you want to change the background color for title side

to get above result add this css in your application 

.section-expandable .section-expandable-title {

    background-color: green;

}


To change background color of the expendable area of accordion item as shown below Image

.section-expandable .section-expandable-content-expanded, .section-expandable .section-expandable-content.is--expanded {
    background-color: green;
   
}

Used this CSS to your application screen level 

Thanks and Regards,

Akshay Deshpande


2021-09-30 18-38-59
Nuno Ricardo Rodrigues

Hello @Rafael Moreira,

Can you share want OML? Or an image with you want to achieve.

The accordion item don´  t have fields.

Best regards,

NunoR

UserImage.jpg
Rafael Moreira
actually i would just like to change the accordion item color to green
2021-09-30 18-38-59
Nuno Ricardo Rodrigues
Solution

Hello @Rafael Moreira again,

You can use the class "background-green" to add background color green or "text-green" to add the text green.

Hope it helps,

NunoR

UserImage.jpg
Rafael Moreira

It turns out that when I try to edit  I come across this situation 

dúvida.png
2020-09-01 10-42-42
Stefano Valente
Solution

In your browser, right click Inspect and see the css of your accordion. You will see this is the css that allows you to change it:


2024-01-31 05-29-41
Akshay Deshpande
Solution

Hello Rafael Moreira,

if you want to change the background color for title side

to get above result add this css in your application 

.section-expandable .section-expandable-title {

    background-color: green;

}


To change background color of the expendable area of accordion item as shown below Image

.section-expandable .section-expandable-content-expanded, .section-expandable .section-expandable-content.is--expanded {
    background-color: green;
   
}

Used this CSS to your application screen level 

Thanks and Regards,

Akshay Deshpande


Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.