205
Views
2
Comments
Solved
New Icon For Expand Collapse
Question

Hi All,

I want to change Icon for Expand/Collapse (+/-) instead of  (V).


Default icon is + once user click on expand it convert in -

How can do this.


Thanks in Advance.

Amogh

2026-02-26 06-29-24
Rahul
 
MVP
Solution

Hi Amogh,

You can to change two css on page level or module level

see below css

.section-expandable .section-expandable-icon:after {
    content: "\f067";
}

.section-expandable.is--open .section-expandable-icon:after {
       content: "\f068" !important;
}


Hope this will help you.


Regards

Rahul Sahu

2020-08-11 18-55-29
Amogh Mishra

Thanks @Rahul Sahu

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