Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,
    All the styling done in mu child theme’s style.css file. I haven’t touched any of the plugin files.

    To adjust the category title margin (assuming it uses H2 header font):
    .qa-category H2 {
    margin-bottom: 8px;
    margin-bottom: 0.5714rem;
    }

    To adjust the question margins (assuming it uses H3 header font):
    .qa-category H3 {
    margin: 0 0 4px 4px;
    margin: 0 0 0.2857rem 0.2857rem;
    }

    To disable the question underline style:
    .qa-faq-anchor {
    text-decoration: none;
    }

    To add the question bullet symbol (in this case right pointing arrow):
    .qa-faq-anchor:before {
    content: “\21E8 020”;
    }

    To intend the answer to the right:
    .qa-faq-answer {
    margin-left: 24px;
    margin-left: 1.714rem;
    }

    Thread Starter ghi07

    (@ghi07)

    Thanks cinek2030.

    I’ve decided not to pursue this question any further. Please close the thread.

    Cheers, Greg.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to change FAQ heading style’ is closed to new replies.