Title: Custom CSS
Last modified: July 19, 2018

---

# Custom CSS

 *  Resolved [adamsellars](https://wordpress.org/support/users/adamsellars/)
 * (@adamsellars)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/custom-css-201/)
 * I was wondering if there is a list of custom CSS possibilities that we can use
   to customise the look of the FAQ? I can see in support forums things like .ufaq-
   faq-category-title, but I am looking to customise things like the following:
   –
   Title text colour, both normal and hover – Block colours, both normal and hover(
   I note that I tried the styling settings and this did not propagate across) –
   Space between questions
 * Is there a list available (preferable)? Or can you please provide css items for
   the above please?

Viewing 1 replies (of 1 total)

 *  [etoilewebdesign](https://wordpress.org/support/users/etoilewebdesign/)
 * (@etoilewebdesign)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/custom-css-201/#post-10509640)
 * Hi adamsellars,
 * Unfortunately there’s no list maintained. You could use the following items to
   customize the styling:
 * Title:
 *     ```
       div.ufaq-faq-title-text {
       color: red !important;
       }
       ```
   
 * Answer content:
 *     ```
       div.ufaq-post p{
       color: gray;
       }
       ```
   
 * Add spacing between questions:
 *     ```
       .ufaq-faq-div {
           margin-bottom: 20px !important;
       }
       ```
   
 * For hover you can add a suffix to CSS selectors above, for example:
 *     ```
       div.ufaq-faq-title-text :hover {
       color: blue !important;
       }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Custom CSS’ is closed to new replies.

 * ![](https://ps.w.org/ultimate-faqs/assets/icon-128x128.png?rev=1803957)
 * [Ultimate FAQ Accordion Plugin](https://wordpress.org/plugins/ultimate-faqs/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/ultimate-faqs/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/ultimate-faqs/)
 * [Active Topics](https://wordpress.org/support/plugin/ultimate-faqs/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/ultimate-faqs/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/ultimate-faqs/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [etoilewebdesign](https://wordpress.org/support/users/etoilewebdesign/)
 * Last activity: [7 years, 10 months ago](https://wordpress.org/support/topic/custom-css-201/#post-10509640)
 * Status: resolved