Navbar on an image

Please i need assistance. my navbar is appearing on top of the image instead of after the image i.e at the bottom of the image.

you can notice it by using the developers tool to inspect the navbar. please i need assistance to place it immediately after the image.

you just need to place whole #navbar element just below the main tag. like this:

<main>
<div id=navbar>
//navbar content
</div>
//rest of body content
</main>

Hope it helps

1 Like