Difficult to explain...
Pretty much, i have posts, on wordpress, with bits of forum added, that are full page, with no side bar, for example:
https://percysgrowroom.com/cannabis-grow-diaries/
See how the bit with the forum has no side bar, this was done with CSS
I need to do the same thing, but on a page, instead of a post, for example, this:
https://percysgrowroom.com/cannabis-plant-infirmary/
I just need to know how to do it to pages instead of posts.... anyone able to help?
the code for the full screen posts looks like this, i need the version for pages
.pageid-4423 #wpforo #wpforo-wrap #wpforo-menu, .pageid-4423 .wpforo-subtop, .pageid-4423 #wpforo #wpforo-wrap #wpforo-footer {
display: none !important;
}
.pageid-4423 #wpforo #wpforo-wrap .wpforo-right-sidebar{
display: none !important;
}
.pageid-4423 #wpforo #wpforo-wrap .wpforo-content {
width: 100% !important;
}
yer i posted thw rong one, sorry, thats my attempt to get it to work lol
here is the post code that works:
.postid-4014 #wpforo #wpforo-wrap #wpforo-menu, .postid-4014 .wpforo-subtop, .postid-4014 #wpforo #wpforo-wrap #wpforo-footer {
display: none !important;
}
.postid-4014 #wpforo #wpforo-wrap .wpforo-right-sidebar{
display: none !important;
}
.postid-4014 #wpforo #wpforo-wrap .wpforo-content {
width: 100% !important;
}
That worked!! Thanks Sofy.... I need to do the same thing for some more pages i will be making, do i use the same code for other pages?Â