I have a problem with my forum where it doesnt fill the full width of the screen, ive got it selected to full width template. Have a look here https://bgnforums.com/forums/
Hi @toxicfox,
The issue comes from the active theme, it sets the following CSS rule:Â
body.template-full-width .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide), body.template-full-width [class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) max-width: 120rem;
}
If you want to overwrite that rule use the CSS code below:
body.template-full-width .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
width: 100% !important;
max-width: 99%;
}
The CSS codes should be added in the "Custom CSS code" textarea, located in the Dashboard > Forums > Settings > Style Tab. Â
The red marked codes can be changed as you like.Â
Please don't forget to delete all caches and press Ctrl+F5 (twice) on the frontend before checking to reload the updated CSS file.
ahh thank you, but how do i get rid of the normal background theme, so the forum can sorta be its on page if u know what i mean