How to increase the distance to appear icon that expands menu

Asked

Viewed 154 times

1

I am in a MVC 4 project, using bootstrap and I want to know if there is a way to change the configuration so that the button that expands the menu (which only appears on smaller screens) appears on some larger screens.

Thus: http://uploaddeimagens.com.br/imagens/menutoggle-png

There’s a certain distance where that menu button appears, that’s the distance I need to change.

1 answer

5

This value is defined by one or more lines similar to this in css:

@media ... max-width: 1200px

The min-width and max-width determine what page size will receive that CSS, adjusting as your need you change the points where the layout change occurs.

If you want certain element to appear independent of screen size, then just move the desired CSS chunk out of the statement @media { ... }.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.