I'm sure what I might be doing wrong here but my media queries don't seem to be working on this new mainly bootstrap based website I'm working on.
In my HTML sheet I have placed within the head tags:
<meta name="viewport" content="width=device-width, initial-scale=1">
Then on my CSS I have something like this:
Mobile CSS
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
h1 {
font-family: 'Lato', sans-serif;
font-style: normal;
color: #000000;
font-size: 6.5vw;
letter-spacing: 0.50em;
margin-left: 3%;
}
h2 {
font-family: 'Lato', sans-serif;
font-style: normal;
color: #000000;
font-size: 1.5vw;
letter-spacing: 0.25em;
}
}
Any help would be very much appreciated, Thanks!