XF 1.2 Subforumlist with 2 columns

Marcus

Well-known member
This does not work in EXTRA.css. Do you have another idea?
PHP:
.node .subForumList li {
   width:47%;
}
 
Works for me on my localhost - I have just tested it:
Code:
.node .subForumList li {
width: 47% !important;
}

Check there are no errors in the template nor that you don't have code further on which is overriding it.
 
Works for me on my localhost - I have just tested it:
Code:
.node .subForumList li {
width: 47% !important;
}

Check there are no errors in the template nor that you don't have code further on which is overriding it.
An overwriting child template ERROR.css was the issue. Thanks guys for the fast replies !
 
Top Bottom