I have a background-image on the first section of my site however there is padding-top on that section in order to seperate the first title from the navbar. Is there a way I can get the background image to over ride the top padding?
Thanks
HTML
<nav>
<a href="#getting-his-start"><b>Getting his Start</b></a>
<a href="#cinematic-revolution"><b>Cinematic Revolution</b></a>
<a href="#experimental-phase"><b>The Experimental Phase</b></a>
<a href="#logos-made-to-last"><b>Logos Made to Last</b></a>
<a href="#the-nect-big-thing"><b>The Next Big Thing</b></a>
<a href="#his-influence-today"><b>His Influence Today</b></a>
</nav>
<section class="start">
<h2 id="getting-his-start">Getting his Start</h2>
CSS for background image
.start {
background-image: url(../images/goldenarmamend.png);
background-position: top right;
height: 100%vh;
width: 100%vw;
}
CSS for h3 to have space above
h3 {
font-size: 1.5em;
margin-top: 3em;
margin-bottom: 0.7em;
text-transform: uppercase;
}
Add a margin-top instead of padding-top and move the title up with negative margin top. IF you can share code snippet on that section can give a exact answer.