Put this in the custom css/additional css part of your theme
#bbpress-forums {
width: 85% !important;
margin: 0 auto !important;
}
you can amend the 85% to get the width you want
Hello, Robin, thank for your reply
I am sorry to tell you that it doesn’t work
I have done two things:
1)I have put your code in the custom CSS
2)I have done a plugin. I have copied the CSS file of bbPress iinto this plugin and, afterwards, have modified the next rows:
#bbpress-forums {
/*
background: transparent;
clear: both;
*/
background-color: yellow;
width: 85% !important;
margin: 0 auto !important;
/*
margin-bottom: 20px;
margin-bottom: 2px;
overflow: hidden;
font-size: 12px;
line-height: 18px;
*/
Please, tell what I am doing wrong
it could be one of a few dozen reasons 🙂
At the moment your site is downloading 2 x bbpress.min.css to the browser together with one bbpress.css, so without soending a lot if time, it is hard to see what changes are in which.
Can you take out/deactivate your additional plugin and the custom css and then install
bbp style pack
once activated go to
dashboard>settings>bbp style pack>Custom CSS
and put the
#bbpress-forums {
width: 85% !important;
margin: 0 auto !important;
}
in there.
It it does not work, LEAVE that change active, and I may be able to see through the browser what is happening in the background
#bbpress-forums {
width: 85% !important;
margin: 0 auto !important;
}
Hello again, Robin, thank for your reply
I am sorry to tell you that it doesn’t work. I am using Kadence Thema. This message appears:
Theme Support
You are using the Kadence theme (or a child theme of this theme)
This theme has extensive modifications for bbpress, and not all the features of the bbp style pack
plugin may work with this theme.
Some bbpress styling can be done through the theme in dashboard>appearance>customise>bbpress
If you find that the styling features in this plugin do not work, then try enabling the fix below.
If you find other things not working, then please advise us via bbp Style Pack support
We cannot guarantee to fix every issue with this theme, but we will take a look.
Enable Kadence theme styling support fix Enable Theme Support
there is a button: “save”. I have not pushed it
Thanks again
ok, so you are using then Kadence theme, which as my text says has extensive bbpress modifications, so yes the fixes I have suggested and the plugin you have written may well not work.
I can only suggest you contact Kadence support for further help
Well, now is working Thank you!!!
But now the bread crumbs appear duplicated.
that is because Kadence does it’s own
you can take out kadence breadcrumbs using
.kadence-breadcrumbs {
display: none !important;
}
or the bbpress breadcrumbs using
#bbpress-forums .bbp-breadcrumb {
display: none !important;
}
Choice is yours !!
Thank you again!!
You have been most helpful!!