Product landing page feedback please

Hello everyone here is my product landing page any feedback would be very much appreciated.
I think there are still some problems withn it for example when the browser’s width is less than 550px the

title dissapears behind the navigation bar i hope for a solution too thank you :smiley:

Please do not forget to leave a feedback :slight_smile:
Thank you.

1 Like

Hey @bouchra! Very nice job. As per your problem with the title, it’s been covered by your navigation because your navigation is positioned above it right?

Well a simple solution is to use a @media query and push the body down to handle these cases. Here’s an example:

@media screen and (max-width: 600px) {
  /* CSS that should only be applied if the device has a screen 
  and has a screen size that's under 600px */
}