Notifications
Clear all

wpForo 1.x.x [Solved] Blockquote Causing Issues

3 Posts
2 Users
0 Reactions
2,127 Views
Posts: 43
Topic starter
(@louie)
Trusted Member
Joined: 8 years ago

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
Robert
Posts: 10587
Admin
(@robert)
Support Team
Joined: 9 years ago

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;
}
Posts: 43
Topic starter
(@louie)
Trusted Member
Joined: 8 years ago

That fixed the issue.  Thanks.