R Ruh Active member Dec 9, 2022 #1 Hello Vertical and horizontal border and forum node colors as in vbulletin how can I do it? Thanks.... ? Attachments 1670580116668.webp 296 bytes · Views: 2 Screenshot_1 - Kopya.webp 29.7 KB · Views: 2
Hello Vertical and horizontal border and forum node colors as in vbulletin how can I do it? Thanks.... ?
Solution O O Old Nick Dec 9, 2022 Less: .node-icon { border-right: 1px solid @xf-borderColorFaint; padding: 10px; }
O Old Nick Well-known member Dec 9, 2022 #2 Hello, for alternate color for node you can use this code HTML: [data-template="forum_list"] { .block-container .node:nth-child(odd) { background: #e9f5fd; border-top: none; } .block-container .node:nth-child(even) { background: #fff; border-top: none; } } Upvote 0 Downvote
Hello, for alternate color for node you can use this code HTML: [data-template="forum_list"] { .block-container .node:nth-child(odd) { background: #e9f5fd; border-top: none; } .block-container .node:nth-child(even) { background: #fff; border-top: none; } }
O Old Nick Well-known member Dec 9, 2022 #3 For stats cells HTML: .node-stats { border-left: 1px solid @xf-borderColorFaint; border-right: 1px solid @xf-borderColorFaint; } Adjusts the color as you wish. Last edited: Dec 9, 2022 Upvote 0 Downvote
For stats cells HTML: .node-stats { border-left: 1px solid @xf-borderColorFaint; border-right: 1px solid @xf-borderColorFaint; } Adjusts the color as you wish.
R Ruh Active member Dec 9, 2022 #4 Nicolas FR said: For stats cells HTML: .node-stats { border-left: 1px solid @xf-borderColorFaint; border-right: 1px solid @xf-borderColorFaint; } Adjusts the color as you wish. Click to expand... Thanks you... just this is missing Upvote 0 Downvote
Nicolas FR said: For stats cells HTML: .node-stats { border-left: 1px solid @xf-borderColorFaint; border-right: 1px solid @xf-borderColorFaint; } Adjusts the color as you wish. Click to expand... Thanks you... just this is missing
R Ruh Active member Dec 9, 2022 #6 Nicolas FR said: Sorry i don't understand. Click to expand... this side did not Last edited: Dec 9, 2022 Upvote 0 Downvote
O Old Nick Well-known member Dec 9, 2022 #7 Less: .node-icon { border-right: 1px solid @xf-borderColorFaint; padding: 10px; } Upvote 0 Downvote Solution