Design comparison
Solution retrospective
When I open the code locally on my system everything works fine, but when I uploaded the code from GitHub all the elements gets messed up. Any suggestions how can I solve this?
Community feedback
- @thesohailjafriPosted over 3 years ago
- Add google fonts link in head tag (https://fonts.google.com/) example for Poppins font:
and add font-family in root CSS accordingly example: *{ font-family : Poppins, Arial; }
2)To remove the horizontal scroll bar from the bottom add overflow : ''none" to the body tag.
I hope this fixes the issue you're facing after deploying. Have a good day
Marked as helpful1 - @sorengreyPosted over 3 years ago
I had this same problem until I realized you absolutely have to use Inspect and develop your site at the specified widths, 1440 and 375. That's the width Frontend Mentor is going to view your work on, which can cause things to move out of place even if they look great on your screen. I learned the hard way.
Marked as helpful0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord