• Resolved michaelwilding

    (@michaelwilding)


    I have spent a while trying to work out what to change in the faq-default.css to change the title colours. I am using the shortcode and at the moment it is a bit unclear because the titles are in black and when you click on an FAQ and they appear underneath the writing, is also in black, making it hard to differentiate questions from answers.

    I am sure I can change the title colour in the default css file (which I have activated) but I just cannot find the class to do it in. I have tried everything I can think of. Would you be able to let me know what I need to add to the css file to change the title colors please?

    Thank you

    http://wordpress.org/extend/plugins/wordpress-faq-manager/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Andrew Norcross

    (@norcross)

    You don’t want to make any changes in the faq-default.css file, since it will be over-written by any updates. You want to make any changes in your own theme CSS. The FAQ titles are set to black (#000000 hex code) but the paragraph text isn’t being set in the CSS from the plugin. If you want / need to change the title text of each FAQ (as the size between the two should be large enough, but I don’t know your site’s theme since you haven’t provided a link), you can add the following into your theme’s CSS:

    .single_faq h3.faq_question {
    	color:#2F4F4F;
    }

    change the #2F4F4F to the appropriate color you want. Put that in your theme’s style.css and it will override any CSS from the plugin

    Thread Starter michaelwilding

    (@michaelwilding)

    Thanks for the update. It isn’t working for some reason, all the other CSS for the plugin works except for this. I don’t have the FAQ’s on separate pages but as expanding text, does that make a difference to the CSS used?

    Plugin Contributor Andrew Norcross

    (@norcross)

    No, it shouldn’t have any affect. But without a link to the site, I can’t give you any other assistance as to what the problem is.

    On a side note, I’ll be leaving on a vacation until mid next week and won’t have internet access, but please post a link to the site / page in question and I can take a look when I get back.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: FAQ Manager] Change Title Color’ is closed to new replies.