Carrot on accordion doesn't appear when form is rendered in SharePoint

Hello,

Is there anything special you need to do to get the carrot to appear to expand/collapse the accordion? It displays in the Plumsail Forms app, but not when the form is rendered in SharePoint.

Thanks,
Matt

Hello @mkorek,

Welcome to Plumsail Community!

You can add any symbols to Accordion control with CSS:

a.nav-link.active::before {
    content: "\02C5";    
}

a.nav-link::before {
    content: "\02C3";    
}
1 Like