R
R
Rebldomakr2018-04-28 13:42:37
Bootstrap
Rebldomakr, 2018-04-28 13:42:37

How can I make the menu expand on top of the text?

Hello, when I open the menu, the text slides down, how to fix it?
Link

Answer the question

In order to leave comments, you need to log in

1 answer(s)
P
Pavel Karinin, 2018-04-28
@Rebldomakr

If you need to quickly, then: for an element with a class

navbar navbar-expand-lg navbar-light container-fluid
prescribe style position: fixed; and make its background opaque
UPD: Let's show the full solution right away:
@media only screen and (max-width: 991px)
#header .navbar {
  background: rgba(52,58,64,.3);
  border-radius: 5px;
  position: fixed;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question