• Resolved davidcsmith

    (@davidcsmith)


    When using the shortcode you-faqs displays the FAQs as expected. But the last entry in every category is not aligned correctly.

    Is it necessary to add style codes to correct the misalignment?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @davidcsmith,

    I checked your site and there’s a style that is being applied onto all elements that have a class attribute value containing “column” which is causing the misalignment.

    
    [class*="column"] +
    [class*="column"]:last-child {
        float: right;
    }
    

    This is caused by the “Mins” theme you are using.

    You can add custom CSS to solve this issue:

    
    [class*="ufaq-faq-column"] +
    [class*="ufaq-faq-column"]:last-child {
        float: none;
    }
    
Viewing 1 replies (of 1 total)
  • The topic ‘FAQ Alignment’ is closed to new replies.