Fork Me! FCC: Test Suite Template advice

I need some advice for making this responsive and any feedback and advice is desirable :blush:

most problem is navbar…

i have picture for logo of company but in css i give that image z-index 1 to be over navbar. when is screen resolution come small logo is loosing his position i remain fixed on page.

Nice try,

To be honest I don’t understand your question but I would make your navbar from scratch again using flexbox. There are many tutorials out there on how to create navbars using flexbox and believe me, it will make your navbar easily responsive.

Forget navbar! Use only a
So,

a{
display: contents;
color: white;
}

div{
width: 100%;
}

For example, menu can be a a a a a a aa a a a a a a = <>

Example real with this

FILE HTML

<div>
<a>HOMEPAGE</a>
<a>CONTACT</a>
<a>NEWS</a>
</div>

FILE CSS

a{
display: contents;
color: white;
}

div{
width: 100%;
}

This is just a general idea