Am using this design in my project. Am not good in CSS, the problem am facing now is removing the empty area that is below the navbar and stick the picture (800×300) in the navbar.
Where show i check inside the bootstrap CSS design?
Am using this design in my project. Am not good in CSS, the problem am facing now is removing the empty area that is below the navbar and stick the picture (800×300) in the navbar.
Where show i check inside the bootstrap CSS design?
3
Answers
This padding si normally inside
or
The quickest way to achieve this, since removing the padding from the navbar does not change anything because of its stack level, is adding to the container div
<div class="container">
below the navbar the styling properties:style="position: relative; top: -20px;"
in the HTML document.Mind that if you want to have more control to it you should add a class to it, like
<div class="container moveUp">
and on your style.css file customize it like this:.moveUp{ position: relative; top:-20px; }
That would be in Bootstrap CSS documentation.
Check here: http://getbootstrap.com/css/