I'm struggling to make my background image for the first section of my website touch the navigation bar. The theme of the design requires that the arm in the background image reach all the way up to the nav bar. Check out the background image here
The first section begins with a heading (h3) which has some padding-top applied to it:
h3 {
font-size: 1.5em;
margin-top: 3em;
margin-bottom: 0.7em;
text-transform: uppercase;
}
I want the background to overlap the padding, so there is no gap between it and the navbar.
Here's the CSS for the background image:
.start {
background-image: url(../images/goldenarmamend.png);
background-position: top right;
height: 100%;
width: 100%;
}
I hope this clarifies things!