[Solved] By decreasing the windows size my header does this? [closed]


Basically what is happening is when you decrease the size of the screen there isn’t enough room in the nav bar for all your links and also your image so it pushes it onto two lines, I would look into media queries so at certain widths things change like the size of your image and the size of your nav links.

An example of how this would work

@media (max-width: 1080px){
   navbar-links{
     font-size: 0.8em;
     padding: 0px 5px;
   }

   navbar-image{
     width: 500px;
   }

4

solved By decreasing the windows size my header does this? [closed]