Im using the bootstrap examples with Meteor (fluid.html). I've updated my bootstrap to the latest 2.0.4.
However I'm having an odd problem with the padding-top: 60px;
conflicting in the wrong way with
@media (max-width: 979px)
body {
padding-top: 0;
}
and well.. webkit seems to do this (only on Meteor for some reason):
It ends up looking like this:
(Theres a gap at the top above the black bar) - Of course this is the fluid layout so the browser needs to be dragged down to small view (for iPhones/Androids/Tablets)
How would I manage to get the browser to take padding-top: 0
as the preference so It doesn't do this? Or why is it doing this (the css files are loaded in the same order - first bootstrap.css
and then bootstrap-responsive.css
. I can't figure out the difference
(its supposed to be like this: http://twitter.github.com/bootstrap/examples/fluid.html)
navbar-fixed-top
class of your.navbar
div
has bothnavbar
andnavbar-fixed-top
<style>
tagged class over the override supposed to be given bybootstrap-responsive.css
, though I cant figure out what meteor is doing because this is exactly as it is in the example on bootstrap's own site