How to change navbar/container width? Bootstrap 3

前端 未结 7 1234
天涯浪人
天涯浪人 2020-12-13 03:42

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.

I trie

7条回答
  •  [愿得一人]
    2020-12-13 04:24

    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%;
       }
    }
    

提交回复
热议问题