In the default MyBB theme you can find following line in the postbit and postbit_classic template
<div class="post_body scaleimages" id="pid_{$post['pid']}">
and in the postbit_classic template additionaly the line<div class="post_author scaleimages">
You would have to adapt your themes accordingly unless they do not show the scaleimages CSS class. After integrating this in your themes you would have to include following CSS class in your global.css of your themes.scaleimages img {
max-width: 100%;
}
and modify the value of max-width to your requirements....