Landing page nav bar issue

Hello!

I need help with my landing page, on mobile devices it looks awful. Is the header that is getting in the way. I was trying to fix it with media query but I am doing something wrong.

https://codepen.io/carlaicd/full/yrMZzv

On #company div, give it font-size: 1em; on the same mobile width.

It will look like how you want it to look.

1 Like

On line 90 you have a syntax error

@media (min-width: 320px) and (max-width: 480px) #company {
  font-size: 1em;
}

Should be:

@media (min-width: 320px) and (max-width: 480px) {
  #company {
    font-size: 1em;
  }
}
1 Like