I learned the hard way that this forum doesn't automatically resize down the original picture. You would need to manually do so yourself. There are 3rd party picture apps that you can install to your smartphone which will downsize a picture for you prior to sending to this forum. That's how I do it through my phone if I'm not at my computer.
I use this free Android app called Photo Editor, which has a "Resize/Fit" button so I can reduce the image size down to different choices such as 1024x768 or 800x600, etc, plus a manual option to resize.
Here's the link to the Google Play Store to download the free Photo Editor app. You're welcome by the way, haha! Unless you are an iPhone fan, in which case I have no idea about the Apple store.
Photo Editor:
https://play.google.com/store/apps/details?id=com.iudesk.android.photo.editor
David said:
Most forums automatically resize images to a max width & height. Not sure why it's not doing it here.
Well the picture is actually hosted on my blog, so I normally don't resize them due to wanting to link to the full size image.
As far as this forum not resizing, I'd assume there is a option in the mybb admin area that allows a max width & height.
However another work around could probably be something like adding this to the CSS file and testing it out.
img {
max-width: 100%;
max-height: auto;
}
Likely won't be perfect with out knowing how the CSS is set up, but should be ok as a work around and will resize the images to fit both computer screens and phone/tablets. Could always adjust the 100% down if needed. Again it's not the best solution but it should work.