Gazhyde Well-known member Sep 18, 2013 #1 I'm looking at tweaking my forum list, and using sub-forums a bit more. If I display sub-forums, by default it shows like this... Would it be possible to change it to look like this? Thanks for any suggestions, or links to something I've clearly missed in search
I'm looking at tweaking my forum list, and using sub-forums a bit more. If I display sub-forums, by default it shows like this... Would it be possible to change it to look like this? Thanks for any suggestions, or links to something I've clearly missed in search
Chris D XenForo developer Staff member Sep 18, 2013 #2 In node_list.css Find: Code: .node .subForumList li { float: left; width: 31%; margin: 2px 0 2px 2%; } And Replace it with: Code: .node .subForumList li { width: 31%; margin: 2px 0 2px 2%; } (Remove the float: left; bit) Upvote 0 Downvote
In node_list.css Find: Code: .node .subForumList li { float: left; width: 31%; margin: 2px 0 2px 2%; } And Replace it with: Code: .node .subForumList li { width: 31%; margin: 2px 0 2px 2%; } (Remove the float: left; bit)
Gazhyde Well-known member Sep 18, 2013 #4 As an aside, I had to tweak width to 100% or it didn't look right as the screen width decreased... Then noticed that when on mobile view there is no indication of sub-forums. Same here on xf.com Is this an known 'issue', or as designed? Shows as this in responsive... Upvote 0 Downvote
As an aside, I had to tweak width to 100% or it didn't look right as the screen width decreased... Then noticed that when on mobile view there is no indication of sub-forums. Same here on xf.com Is this an known 'issue', or as designed? Shows as this in responsive...
Gazhyde Well-known member Sep 18, 2013 #6 Hmmm... OK then, I will have to rethink what I'm doing then! Thanks again Chris. Upvote 0 Downvote
Chris D XenForo developer Staff member Sep 18, 2013 #7 In node_list.css again, you could remove this (near the bottom): Code: .Responsive .node .subForumList, .Responsive .subForumsPopup { display: none; } And maybe remove this too: Code: .Responsive .node .subForumList li { width: 48%; } Upvote 0 Downvote
In node_list.css again, you could remove this (near the bottom): Code: .Responsive .node .subForumList, .Responsive .subForumsPopup { display: none; } And maybe remove this too: Code: .Responsive .node .subForumList li { width: 48%; }
Gazhyde Well-known member Sep 18, 2013 #8 Removing the first section gives this... At least there is some indication that there is more to see! Removing the second section doesn't appear to make any obvious difference that I can see. Upvote 0 Downvote
Removing the first section gives this... At least there is some indication that there is more to see! Removing the second section doesn't appear to make any obvious difference that I can see.
Gazhyde Well-known member Oct 7, 2013 #10 Just a quick note if anyone follows this thread! Having just upgraded my dev site to 1.2.2, I've noticed in the changelog there was a change to node_list.css node_list.css Make sub-forum titles not wrap and be hidden with text-overflow, adjust the responsive cutoff for when the sub-forum list is hidden. Click to expand... This change is lovely, but it makes the 'new' indicator disappear off the edge of the screen. I'm personally not too worried about it, as it looks better than before. May revisit it later on. Attachments 2013-10-07 19.26.43.webp 19.3 KB · Views: 2 Upvote 0 Downvote
Just a quick note if anyone follows this thread! Having just upgraded my dev site to 1.2.2, I've noticed in the changelog there was a change to node_list.css node_list.css Make sub-forum titles not wrap and be hidden with text-overflow, adjust the responsive cutoff for when the sub-forum list is hidden. Click to expand... This change is lovely, but it makes the 'new' indicator disappear off the edge of the screen. I'm personally not too worried about it, as it looks better than before. May revisit it later on.