The default width for my navbar is too wide 1170px. I would like to reduce it down to 940px - but I want to keep the responsiveness.
1170px
940px
I trie
If you are dealing with more dynamic screen resolution/sizes, instead of hardcoding the size in pixels you can change the width to a percentage of the media width as such
@media (min-width: 1200px) { .container{ max-width: 70%; } }