My navbar going under / overflowed by another elements on mobile view

/* ************************** */ /* BELOW 1350px (Smaller dekstops) */ /* ************************** */ @media (max-width: 84.5em) { .sticky-note { width: 30rem; height: 30rem; } .motto-heading { font-size: 5.2rem; } .product-description { font-size: 1rem; } } /* ************************** */ /* BELOW 1200px (Landscape Tablets) */ /* ************************** */ @media (max-width: 65em) { html { font-size: 56.25%; }… Read More My navbar going under / overflowed by another elements on mobile view

Why doesn't z-index allow the OK button to be clickable?

I have a #popup-shadow div that takes all the viewport, in order to make #popup modal, and prevent everything out of #popup to be clickable. This works. Problem: it even makes everything inside #popup unclickable. Why? Since #popup has a higher z-index (value 100!), why is the OK button unclickable? #popup-shadow { position: fixed; top:… Read More Why doesn't z-index allow the OK button to be clickable?

Absolute Positioned Element rendering over other element with higher z-index

I’ve created a div that I have positioned absolutely over this map: Here, the element I’m talking about is a div containing the four white ovals. So this div has position: absolute; z-index: 1. Now notice the hamburger button in the top right – this opens the side navigation menu, like this: However, as you… Read More Absolute Positioned Element rendering over other element with higher z-index

CSS: menu icon animation

Why this code doesn’t work for me totally? No animation or effect when I press it on the browser. This is HTML snippet: <!– Menu Bars –> <div class="menu-bars" id="menu-bars"> <div class="bar1"></div> <div class="bar2"></div> <div class="bar3"></div> </div> The CSS snippet: .menu-bars { position: fixed; top: 1rem; right: 2rem; display: inline-block; cursor: pointer; z-index: 11; }… Read More CSS: menu icon animation