therecluse26 / PHP-Login

A login system built with PHP, MySQL, jQuery and Bootstrap
MIT License
836 stars 442 forks source link

Responsiveness #206

Open aisml opened 6 years ago

aisml commented 6 years ago

when accessed from mobile, pages are not loading in mobile mode, but on web browser responsive design mode it is loading normally, content and menus are resized as expected.

jeltevandervalk commented 6 years ago

This is because of a small error in the standard htmlhead option. You can easily fix this by replacing the code in the super admin site config settings with this:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

The error is in the last meta tag, and without it mobile browsers will show a scaled down version of the page.