R Ruh 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.png 312 bytes · Views: 1 Screenshot_1 - Kopya.png 92.1 KB · Views: 1
Hello Vertical and horizontal border and forum node colors as in vbulletin how can I do it? Thanks.... ?
Solution Nicolas FR Dec 9, 2022 Less: .node-icon { border-right: 1px solid @xf-borderColorFaint; padding: 10px; }
Nicolas FR 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; } }
Nicolas FR 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 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 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
Nicolas FR Well-known member Dec 9, 2022 #7 Less: .node-icon { border-right: 1px solid @xf-borderColorFaint; padding: 10px; } Upvote 0 Downvote Solution