I have worked with Bootstrap many times and saw this problem only when the meta viewport tag is missing. However, this is loading, and I'm still experiencing problems with Bootstrap on mobile devices. Can anyone know what else could be causing this?
Questions:
- route routes are displayed
- style does not display correctly
- CSS showing in sight
- no mobile navigator
- formatting / alignment disabled
Head:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <title>Training Portal</title> <link href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet"> <link href="<?= base_url("stylesheets/cust.css"); ?>" rel="stylesheet" type="text/css" media="screen"> </head>
Scripts at the end of <body> :
<script src="http://code.jquery.com/jquery.js"></script> <script src="<?= base_url("assets/script.js"); ?>"></script> <script src="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script> </body>
View data is also added in CSS:
@viewport{ zoom: 1.0; width: extend-to-zoom; }
An example of a problem on a mobile device:

How it looks on the desktop:

html twitter-bootstrap mobile responsive-design responsiveness
Lauren f
source share