• Resolved baponline

    (@baponline)


    Is there a way to add a symbol for the FAQ Category Toggle?
    For example, the FAQ toggle has the +/- symbol but nothing is displayed for the FAQ Category toggle.

    Since I have quite a few categories and FAQs, I only want the Categories to be displayed when the page loads (FAQ Category Toggle set to Yes). But my users may not realize they have to click on the category name to see the associated FAQ list.

    Thank you for your help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi bap,

    Unfortunately, we don’t have a built-in option to add toggle icons or something similar to the category titles to make it more obvious that they are expandable. That being said, with a little bit of custom CSS, you should be able to achieve something pretty useful. Try inserting the following into the “Custom CSS” box in the “Basic” area of the “Settings” tab:

    .ufaq-faq-category-title-toggle h4:before {
    font-family: 'ewd-toggle-icon';
    text-transform: lowercase;
    content: "a ";
    }
    

    What this does is place an icon before the text of each category title. It makes it use our custom icon font. The lowercase is there just to make sure it is the plus sign and not the minus sign. Unfortunately, there is no way to make it change to the minus sign (when you click on it) with just CSS. You’d have to update the core plugin code for this, which we wouldn’t recommend. Nevertheless, this should present quite a good improvement.

    Thread Starter baponline

    (@baponline)

    Works great! Gives me just what I need.
    Thanks so much for your help and quick response.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Category Toggle Symbol’ is closed to new replies.