XF 2.2 Reducing space between nodes

Dixie McCall

Well-known member
Hello
I know the property is somewhere. I would like to reduce the space between categories. See attached. Thank you!
 

Attachments

  • Screenshot (18)_LI.webp
    Screenshot (18)_LI.webp
    19.5 KB · Views: 11
Solution
Use this:
CSS:
/* REDUCE SPACE BETWEEN NODES ON FORUM HOME */
.template-forum_list .block--category {
    margin-bottom: 5px !important;
}

Adjust 5px as needed.
CSS:
/* REDUCE SPACE BETWEEN NODES ON FORUM HOME */
.template-forum_list .block--category {
    margin-bottom: 5px !important;
}

@Ozzy47 this is a cool way to call a template !! .template-forum_list (y)
i always used this syntax [data-template="forum_list"]

BTW why it's necessary to call the forum_list template here ? Where categories are displayed except forum_list ?

And both code works without !important as i tried them.
 
Top Bottom