• Resolved adamsellars

    (@adamsellars)


    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)
  • 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.