Notifications
Clear all
How-to and Troubleshooting - wpForo 2.0
5
Posts
2
Users
1
Reactions
1,656
Views
4 Replies
Nov 26, 2020 11:15 am
Hi @caliptogarcia,
There is no scroll-bar in wpForo editors because we've added auto-growing feature, which expends the writing area automatically. Please see the GIF video:
Nov 27, 2020 5:48 pm
Thank you, @caliptogarcia,
The auto-growing feature doesn't allow enabling scroll-bar, it grows and gets enough height so the scroll-bar cannot be initiated even if we add it there.
The only solution at the moment I can suggest is moving the toolbar to bottom by simple CSS code. If you like this solution, you can put the CSS code in Dashboard > Forums > Settings > Styles > Custom CSS Code textarea, then delete all caches, go to forum front-end and press Ctrl+F5 to reload new CSS code:
#wpforo #wpforo-wrap .mce-top-part{
position:absolute!important;bottom:-40px !important;z-index: 100; width: 100% !important;
}
#wpforo #wpforo-wrap .wp-editor-wrap {
margin-bottom: 40px;
}
#wpforo #wpforo-wrap .mce-toolbar .mce-btn-group {
padding-top: 8px;
}
Here is the screenshot, the toolbar is always close to your typing place:
Nov 28, 2020 7:58 am
thank you


