Bonsoir leirof,
For the blue, if you want to make it yourself easy, go for bbP Toolkit (https://wordpress.org/plugins/bbp-toolkit/) to remove the breadcrumbs and other messages.
For the avatar, I will have a look later.
Pascal.
For the avator, it will be something like this to add as CSS somewhere:
.bbp-author-avatar .avatar-14 {
width: 30px;
}
A+
Same question for this case 🙂
Encore ? :-p
.bbp-footer {
display: none;
}
Pascal.
Thanks again 🙂
And last question (I promise): how to enlarge titles (in yellow, always on this picture ? x)
Adapt the ’20px’ to the size you want:
.bbp-forum-title {
font-size: 20px;
}
PS. ne jamais dire ‘last question’… you never know what comes up next 🙂
I should have listened to my CSS lessons –‘
Thank you very much 🙂
Ok, you’re right, it was not the last question -__-‘
I know how to change the color of text, but I can not find the class corresponding to this buttons xD
@leirof
Add this anywhere you can put custom css like in your themes style.css file or in a custom css plugin.
#bbpress-forums div.bbp-the-content-wrapper input{
color: #000;
}
No idea for this problem ?
Ok, that’s good, I found !
#bbpress-forums .button {
background-color: gray;
color: red;
}
Well that code is very specific for every button in your bbPress forums, but if it works I guess use it.
I should have told you use this CSS instead earlier since it just pinpoints the quicktag toolbar buttons and not customize every input field in the content wrapper div.
#bbpress-forums .quicktags-toolbar input.button {
color: black;
}