Sep 14, 2018 11:33 am
See Post (Screenshot Attached):
https://www.cappersinfo.com/forums/nfl-football-picks/rhodyjoes-plays-of-the-day-4/#post-279215
When users use the "quote" function, it's causing problems with the content box.
2 Replies
Sep 14, 2018 11:40 am
That's a result of copy/paste content in quoted post. I see <div> tags with "content" class, and this class is the main class of your theme with 1200px width. wpForo quotes itself work fine without any issue. You've quoted a div with 1200px width so you get this issue.
I recommend put this CSS code in Dashboard > Forums > Settings > Styles > Custom CSS Code textarea. Save it, delete all caches and press Ctrl+F5 on forum front-end:
#wpforo #wpforo-wrap .wpforo-post-content .rh-container,
#wpforo #wpforo-wrap .wpforo-post-content .content {
width: auto;
clear: right;
}
Sep 14, 2018 4:26 pm
That fixed the issue. Thanks.