I’m using X and I have customized my classic accordions in the Global CSS using this code:
.x-accordion-heading .x-accordion-toggle.collapsed {background-color: #e7d9d8; color: #151510;}
.x-accordion-heading .x-accordion-toggle {background-color: #cfdad6;}
.x-accordion-heading .x-accordion-toggle:hover {color: #ffff;}
.x-accordion-heading .x-accordion-toggle {color: #FFFF;}
.x-accordion-heading .x-accordion-toggle.collapsed:before{float: right; content: "\f078";; color: #FFF}
.x-accordion-heading .x-accordion-toggle:before{content: "\f077"; float: right; color: #F490a9; transform: rotate(1deg);}
However on some pages I want to style the Font Awesome icons differently. So for example I want one tab to have an arrow icon, one to have a person icon. How do I do this? I don’t want this done globally because I want to change them for each accordion I create. I figure I have to do it in the Inspector pane for the accordion, but I’m not sure how or what to put… Thanks in advance for any help!!