Posts by Fernando Cruz • 29 points
2 posts
-
1
votes2
answers1108
viewsA: Resize NAVBAR size when scrolling the page
I’ve made three small changes to your codepen, and it seemed to work as you want it to: 1- Navbar height is created in class ". navbar" and not in ". nagivation". .navbar { height: 100px; min-width:…
-
1
votes2
answers340
viewsA: How to create fixed header without javascript?
You can use the width and height property in css: header{ width: 100vw; height: 100vh; } But if you really want to have a website that is Responsive to different screens, use media query (very…