bootstrap fixed navbar is hiding slider content - html

I can't figure out how to get the carousel to not hide behind the fixed navbar.
I have tried a few things but I always get lost.
I want the navbar fixed to the top if possible. View the page:
http://www.pegasusbus.com/ebrochure/
Can anyone help me? I am new to all this but a quick learner.
Thank you!

add <br> after your top navigation. It works for me.

Related

Bulma css: Fixed navbar still move a little bit

First: I am sorry about my english
here is my problem
when the page was opened
fixed navbar is still work properly
after the user scrolls down, the navbar will move up and left haft of it.
In the navbar class I added "is-fixed-top" and in the body class I added "has-navbar-fixed-top"
Beginner
Thanks

Is it possible to move another element below a position: sticky?

Hope I can explain my question so you understand :)
I have a sidebar with position: sticky which moves the sidebar when scrolling down the page. My problem is now, when I scroll the page complete down, there is another element which get covered from the sticky sidebar. Is it possible to move that element down also when reaching it with the sidebar?
Please see my page for reference, so you´ll know what I mean. The clue would be to do it with css only?
https://heimprofi.shop/bodenbelaege-sockelleisten/sockelleisten/altberliner-hamburger-profil/
Hope you guys can help me out. Thanks a lot.

Bootstrap Responsive navbar not expanding?

For some reason when I go to a small enough size and the navbar changes to the dropdown one it will not expand no matter what. I cant figure it out.
Code: link
Thanks so much!

My fixed navbar doesn't work properly

I made a fixed navbar, but when I scroll you see the navbar behind the other images. I don't know what I am doing wrong. Here is a link with the navbar (it supposed to fit in the white bar but in Dreamweaver it all looks good).
So I want the fixed navbar that scrolls over all the divs. Please help.
Thanks
Could you use in your CSS the z-index property?
Like so:
z-index:999;

How to make this menu bar fixed while scrolling?

I want to fix this menu bar at the top of the page, so that when user scrolls down, the menu bar continues to appear and the content flows into it. I tried everything, some help would be nice.
Heres the CSS and below the HTML:
CSS: https://www.dropbox.com/s/a0z0eov71wvha1c/style.css
HTML: https://www.dropbox.com/s/qyvb0oqhx8550ym/html.txt
Thank you!
Use the position: fixed css property. Then the position of the div is relative to the window's viewport rather than the content of the page.
You spelled position in #navigation wrong in your stylesheet, could that be the problem?
This is really easy if you correctly understand how the position attribute works in css.
I have a demo which should help you. You just need to understand how position:fixed is used to make the menu bar stick to top.
http://codepen.io/anon/pen/mvGqf