Bootstrap's responsiveness not working - html

I recently developed a website using bootstrap 3 and it looked fine on my browser,i am using firefox and tried the responsive design layout in the developers tool and the website works fine all the nav-menus works great but when i uploded it for test and tried it with a mobile phone using multiple browsers but it doesnt look how it is suppose to look ,the nav-manus didnt shrink to the collapsible button so does anyone seem to know the problem ?any comment is help full thanks. I know i am suppose to post some codes but the code is a lot to be posted.

Write this code in the head if you didn't
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

Related

CSS Media Query Mobile vs Desktop: Mobile too zoomed out | Materialize

I have been using the materialize css framework to style most of my apps recently. When I loaded up the app I'm currently making on my phone it appeared way more zoomed out than it normally does. (See top two photos). The way it previously looked was much more zoomed-in and large (bottom two photos).
I've tried searching around for solutions but I'm not too sure what I'm looking for in terms of a setting that might be different between the two materialize releases or something.
Basically, how can I get my current site to render larger like the old one does? Is this in a media query somewhere?
I haven't changed my styling between these two apps. Really not sure what would have changed.
Thanks for any help!
Are you missing a viewport meta tag in your HTML?
<meta name="viewport" content="width=device-width, initial-scale=1">
https://developer.mozilla.org/en-US/docs/Mozilla/Mobile/Viewport_meta_tag

Website scales on Apple-devices but not on Android-devices

Currently I am creating my own website and last week I worked on making the website responsive. I tried to make the website responsive for mobile devices and I thought that I fixed the problem, in HTML I added the following line:
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
But then I found out that it only works on Apple-devices but not on Android-devices. Do I need to add another line to fix the problem for Android-devices? Or change the line which I already have? Thank you in advance.
Since you were trying to make your website responsive to all devices, I putforth this information:
Bootstrap is a front-end framework for designing websites and web applications. Using Bootstrap framework you can design websites that can work in all devices ranging from Desktops to Mobiles.
All you have to do is download the framework and include it in your website and a little code could help.
You can download the framework here,
Bootstrap Download Page and then get some tutorials here
Hope this helps.

inspecting responsive styles with Chrome

I'm building an application and by far the weakest part of my game is Style and Design. But, I'm having one particular problem at the moment. I'm trying to make my dashboard responsive but when I look at the dashboard as an iphone 6 with my chrome inspector the screen zooms out really far and everything breaks... Here is a screen shot of what I mean.
See how the content is really far away... I really don't know how to fix this? Any idea what I could be doing wrong?
Please try to add this to your HTML's <head></head>:
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Reference: w3schools

Media Queries acting weirdly

I am using dream weaver to create a responsive about me page for my site (using the default about me template). When I use the dream weaver on-device previewing system, the page is fully responsive and on my iPhone it resizes perfectly fine to look like this:
However, when I upload the code to the website, the page no longer becomes responsive. It simply looks the same as it does on my laptop (as shown below)
Why is this issue occurring?
The html page is this. If you need me to post the code here as well, please tell me. Your help is much appreciated :)
For media queries to work on small screens, you need to include the viewport meta element in the head of your document. E.g.:
<meta name="viewport" content="width=device-width, initial-scale=1">

iPad Scaling Issues in Website Build

I tried searching for the better part of three days, but maybe I'm not asking my question right so I decided to try here.
I'm currently developing a website that I feel looks amazing, however on the iPad it's zoomed in with a ratio of 1 to 1 from the start. I cannot for the life of me figure out what is causing this problem. On other websites that I built the iPad simply scales the view to fit into its viewing area. But sadly that is not the case for this.
Here is the website currently
I'm developing on Wordpress, using the Genesis Framework. Can someone please lend a hand?
You should use the Viewport meta tag to specify how you want your website to behave on different screens:
https://developer.mozilla.org/en-US/docs/Mobile/Viewport_meta_tag
It's the viewport meta tag that does this. Here's the one you are using:
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"/>