nixnut wrote yesterday at 4:37pm:
what do you mean by mobile responsive george?
the look of it on a small screen or something else?
If you look at your forum on an iPhone, or any YaBB forum including this one, you'll see that your YaBB forum doesn't fit onto the screen. The right side of your forum can't be seen unless you scroll to the right to see what's missing. But then you can't see what's on the left side of your forum, so you have to scroll to the left.
On phpBB or SMF forums, they fit the screen, and are therefore
"mobile responsive".
If you don't already know, mobile devices account for most of the traffic on the Internet, which has been the case for many years now. As such, at the very least, HTML5 language has to account for that, and provide coding to make pages mobile friendly.
Between the <head> and the </head> tags, for instance, you would see the following:
<meta name="viewport" content="width=device-width, initial-scale=1.0">
And on images, you would see the following to fit the screen:
<img src="
https://yabbforumsoftware.com/yabbfiles/Templates/Forum/default/yabblogo_27.png" style="height:auto; max-width:100%; border:none; display:block;" alt="forum photo">
Beyond proper HTML5 coding, I'm guessing that forum software would need other tweaks as well. But again, however phpBB and SMF forum software does it, their forums are mobile friendly.