XF 2.2 Thicker horizontal rule between prefix group and unassociated selections; user selection

beerForo

Well-known member
I want to make the horizontal rule thicker for unassociated prefixes under prefixes in prefix groups.

Use case: If you have 2 prefix groups in a forum, when users select, the unassociated (third group) look like they are part of the second group. I would like a thicker divider. Thanks!
 
Now I am looking to make the prefix category header and text smaller without it changing the H3 menu header elsewhere. Thanks

1634074161801.png

(I have a few category headers and want to save on horizontal scrolling space.)
 
Last edited:
I just tested it on my local and it works as expected ... on the forum_post_thread template.

If you want it to also apply to the forum_view template then add that to the declaration.
 
To clarify, your code should now look like this:
Less:
[data-template="forum_post_thread"],
[data-template="forum_view"]
{
    .menu-header
    {
        font-size: 1px;
    }
}

Feel free to increase the font size from 1px ;)
 
Top Bottom