Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #799070

    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

    #799078

    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

    #799085

    Thanks Yigit! And if we wanted it changed to a “>” instead?

    #799102

    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

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.