• Resolved newguy321123

    (@newguy321123)


    The toggle symbol is now a capital A or lowercase a depending on the state of the toggle.
    Grrrrr….

    This is frustrating because nothing changed and it seems like there is a conflict somewhere but I do not have the time to search out the conflict and resolve before the site goes live.

    Is there a simple snippet to use to get back to using + and – symbols?

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support jaysupport

    (@jaysupport)

    Hi guy,

    That just sounds like something in your WordPress has overwritten the CSS our plugin uses to set the font family for our icons. You could try adding some custom CSS to counter it. For example:

    .ufaq-faq-title .ewd-ufaq-post-margin-symbol span {
        font-family: 'ewd-toggle-icon' !important;
    }
    Thread Starter newguy321123

    (@newguy321123)

    jaysupport,
    Thank you. Because of that, I`m back on track…

    For other users, maybe this will help. I added some things…
    Copy / Paste as it to your Snippets or Custom CSS location

    /* ADDS + AND – SYMBOL */
    .ufaq-faq-title .ewd-ufaq-post-margin-symbol span {
    font-family: 'ewd-toggle-icon' !important;
    }

    /* CHANGES SYMBOL SIZE TO 15px */
    .ufaq-faq-title .ewd-ufaq-post-margin-symbol span {
    display: inline-block;
    font-size: 15px;
    margin: 0 auto;
    }

    /* MOVES SYMBOL DOWN 9px INLINE WITH TEXT */
    .ewd-ufaq-post-margin-symbol {
    margin-top:9px;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Toggle Symbol Now a Letter A or a’ is closed to new replies.