@JAC said in Forum customisation:
I wish to change the colours of the buttons below.
I’d do this a bit different to @DownPW and be more specific with the target. Obviously, change #ffffff
to whatever value you require
[component="post/actions"] a i, [component="post/actions"] span i {
color: #ffffff !important;
}
This should produce something like the below (obviously not the dark background), and not white, but you get the idea.
The below CSS should not be used in this instance because it will target several other elements on the site and produce undesirable results
.link-primary, .text-primary {
color: var(--bs-link-color) !important;
}
@JAC said in Forum customisation:
And how can I change the board stats widget to look similar to this…
I’d use something like this, which will target the widget background and the colour of the text in use
[component="widget/board-stats"] {
background: #000000;
color: #ffffff;
}
And the below, which will target the background and text colour of the header
[component="widget/board-stats"] h3 {
background: red !important;
color: yellow !important;
}
So the actual CSS you need is
[component="widget/board-stats"] {
background: #194F90;
color: #ffffff;
}
[component="widget/board-stats"] h3 {
background: #000000 !important;
}
.widget-board-stats.border.border-secondary a {
color: #FFC557;
}
This should produce