Amaury Well-known member Jul 18, 2015 #1 How can I remove the bottom border only on the last node of the forum list? The double borders look bad. Using XenForo Community as an example, that would be Example Page.
How can I remove the bottom border only on the last node of the forum list? The double borders look bad. Using XenForo Community as an example, that would be Example Page.
D Dylan V Well-known member Jul 18, 2015 #2 Go to EXTRA.css and add this: Code: .node:last-child li:last-child .primaryContent { border-bottom: none; } Upvote 0 Downvote
Go to EXTRA.css and add this: Code: .node:last-child li:last-child .primaryContent { border-bottom: none; }
Amaury Well-known member Jul 19, 2015 #4 @Dylan V, how can I extend this to sub-forums? Upvote 0 Downvote
D Dylan V Well-known member Jul 20, 2015 #5 Add this: Code: .forum_view li:last-child .primaryContent { border-bottom: none; } Upvote 0 Downvote