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
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
Thanks @Rahul Sahu