Uma489
1
Hi ,I want change my collapsible content icons when it is Active it show an icon in the left side is "-
". And if it is not active show “+” icon. I working in dawn theme. Here I’m attaching the image also please check it once. Can Any one help me this.
Thank You
Hello @Uma489 ,
-
Go to theme edit.
-
search collapsible-content open this file
-
search in file icon-caret change to icon-plus
then add this css
summary .icon-plus {
position: absolute;
height: 0.6rem;
right: 1.5rem;
top: calc(50% - 0.2rem);
}
.accordion details[open]>summary .icon-plus {
transform: rotate(45deg);
}
Look
Uma489
3
Thank you so much @iffikhan30
1 Like