Hi guys,
My client has asked for all of the plus signs on the accordions to be removed. Is this possible?
http://prntscr.com/fbmiey
If so, please can I have the code?
Thanks
Hey Krissie,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
.toggle_icon {
display: none;
}
Best regards,
Yigit
Thanks Yigit! And if we wanted it changed to a “>” instead?
Hi,
Please replace the code with following one
.vert_icon, .hor_icon {
display: none;
}
.toggle_icon:before {
content: "\e875";
font-family: 'entypo-fontello';
left: 5px;
position: relative;
top: -4px;
}
.activeTitle .toggle_icon:before {
content: "\e877";
font-family: 'entypo-fontello';
left: 5px;
position: relative;
top: -4px;
}
Best regards,
Yigit