The ul element does not appear after clicking the checkbox - html

My responsive page has a nav menu on top. But for mobile resolution I created a button that opens up a ul of that nav bar upon clicking. It should work given the code, but it does not appear. I have tried my best to make it work but nothing seems to work. I still do not use javascript and I don't want to for the time being. So I wish to make it work using only CSS.
I tried this method to transform a div. Which absolutely worked fine.
#check:checked ~ .uno {
But if I use this same method to show the ul (as below) upon clicking the invisible checkbox, it doesn't work.
#check:checked ~ #nav-list{(to make it display block from display none)
Here's the code of the whole thing.
nav {
background-color : #0e1317;
width : 100%;
position : absolute;
z-index : 2;
height : 300px;
}
nav .navbar {
display : flex;
justify-content : space-between;
width : 95%;
margin : auto;
background-color : #0e1317;
padding : 20px 0;
}
#nav-list {
font-size: 1.4rem;
font-weight: 500;
}
.uno, .duo {
position : absolute;
height : 2px;
right : 15px;
top : 35px;
width : 25px;
background-color : aliceblue;
transition : all 1s;
}
.duo {
top : 45px;
}
#check:checked~.duo {
rotate : -45deg;
transform : translate(5px, -5px);
}
#check:checked~.uno {
rotate: 45deg;
transform: translate(2px, 2px);
}
.visually-hidden {
width : 40px;
height : 40px;
position : absolute;
right : 6px;
top : 18px;
background-color : #090c0f;
opacity : 0;
z-index : 4;
}
#check:checked~#nav-list {
display : block;
position : absolute;
z-index : 9;
}
#nav-list li {
float : left;
list-style : none;
position : relative;
}
#nav-list li a {
padding : 0 20px;
display : block;
position : relative;
}
nav ul ul {
display : none;
list-style : none;
}
li:hover>ul {
width : fit-content;
position : absolute;
display : block;
color : #b98d69;
transition : 0.75s;
top : 0;
padding : 35px 0;
}
nav ul li a:hover {
color : #b98d69;
transition : 0.75s;
}
.sub-child li {
background-color : #090c0f;
width : 200px;
padding : 5px 0;
font-weight : 300;
}
.sub-child li a {
padding-top : 15px !important;
padding-bottom : 15px !important;
font-size : 1.3rem;
}
#media (min-width: 1000px) /* Swiper Content Container till 1000px*/
{
#hamcross {
display : none;
}
#check {
display : none;
}
}
#media (max-width: 1000px) and (min-width: 100px) /* Swiper Content Container below 1000px*/
{
.book-a-table {
display : none;
}
.uno,.duo {
position : absolute;
height : 2px;
right : 15px;
top : 35px;
width : 25px;
background-color : aliceblue;
transition : all 1s;
}
.duo {
top: 45px;
}
#check:checked~.duo {
rotate: -45deg;
transform : translate(5px, -5px);
}
#check:checked~.uno {
rotate: 45deg;
transform : translate(2px, 2px);
}
.visually-hidden {
width : 40px;
height : 40px;
position : absolute;
right : 6px;
top : 18px;
background-color : #090c0f;
opacity : 0;
z-index : 4;
}
#nav-list {
display : none;
}
#check:checked~#nav-list {
display : block;
}
}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" />
<nav>
<div class="navbar">
<ul id="nav-list">
<li>
HOME:-<i class="fa-solid fa-angle-down ficont"></i>
<ul class="sub-child">
<li>COFFEE HOUSE</li>
<li>RESTAURANT</li>
</ul>
</li>
<li>ABOUT</li>
<li>
MENU:-<i class="fa-solid fa-angle-down ficont"></i>
<ul class="sub-child">
<li>MENU COFFEE</li>
<li>MENU RESTAURANT</li>
</ul>
</li>
<li>
PAGES:-<i class="fa-solid fa-angle-down ficont"></i>
<ul class="sub-child">
<li>SERVICE</li>
<li>RESERVATION</li>
<li>HISTORY</li>
<li>OUR CHEFS</li>
<li>GALLERY</li>
<li>FAQS</li>
</ul>
</li>
<li>
BLOG:-<i class="fa-solid fa-angle-down ficont"></i>
<ul class="sub-child">
<li>BLOG GRID</li>
<li>BLOG STANDARD</li>
<li>BLOG SINGLE</li>
</ul>
</li>
<li>CONTACTS</li>
</ul>
<div id="hamcross">
<input type="checkbox" id="check" class="visually-hidden" />
<div class="uno"></div>
<div class="duo"></div>
</div>
</div>
</nav>
Pardon the long blocks of inefficient code. I am still learning, and would appreciate any help.

The reason your nav is not showing up is nav-list is a sibling to hamcross, hamcross is a parent to checkbox, uno and duo. Which means nav-list is like an uncle to checkbox, that is why #check:checked ~ #nav-list does not work. You need to have a hierarchy that you can traverse the dom with.
Check out this link for 10 examples css only!

Related

Background color will not apply to list and list item

I posted a photo for you to see exactly what problem I have. I don't understand why the style does not apply to the ul and li. I apply the background style to the nav-container so I believe that should be applied to every element right?
I could use a bit of help and some explanation to understand this thing.
header {
background-image: url('Logos\ and\ Assets/cover.jpg');
height: 100vh;
background-size: cover;
background-position: center;
}
.nav-container {
display: flex;
justify-content: space-between;
padding: 10px 10%;
background-color: rgba(153, 217, 140, 0.3);
}
.nav-ul-2 {
list-style-type: none;
}
.nav-ul-2 li {
display: inline-block;
padding: 0% 20px;
}
.nav-ul-1 {
list-style-type: none;
}
.nav-ul-1 li {
transition: all 0.3s ease 0s;
}
.nav-ul-1 li:hover {
color: yellowgreen;
}
.nav-ul-2 li {
[enter image description here][1] transition: all 0.3s ease 0s;
}
.nav-ul-2 li:hover {
color: yellowgreen;
}
<header>
<nav class="nav-container">
<ul class="nav-ul-1">
<li>Acasa</li>
</ul>
<ul class="nav-ul-2">
<li>Servicii</li>
<li>Despre Noi</li>
<li>Contact</li>
</ul>
<div>
<img src="Logos and Assets/roFlag.svg" class="flag" alt="ro-flag">
<img src="Logos and Assets/englFlag.svg" class="flag" alt="eng-flag">
</div>
</nav>
</header>
i dont understant exactly what you are trying here because
your navigation seems to me like this with background color :
Typically your containers are going to be div elements that surround certain areas of the page (a nav-container, a .container for the whole body element, etc.) Try using a div to wrap your nav element and apply your background style to it.

HTML | Horizontal Menu getting out of the block while shrinking the browser size

<html>
<head>
<title> Playing with Cascading Style Sheets </title>
<style type = "text/css">
.nav { background-color : green;
height : 35px;
font-size : 25px;
font-weight : bold;
display : block;
}
.nav ul {
list-style : none;
margin : 0;
padding : 0;
display : inline;
}
.nav li {
display : inline;
padding : 100px;
vertical-align : middle;
}
.nav a {
text-decoration : none;
padding : 8px 8px 8px 8px;
color : white;
vertical-align : middle;
}
.nav a:hover
{
color : black;
background-color : white;
}
</style>
</head>
<body>
<div class = "nav">
<ul>
<li>Home</li>
<li>Links</li>
<li>About Us</li>
<li>Contact Us</li>
</ul>
</div>
</body>
</html>
Query :- While using the background-color style on body tag at the style tag or by another way like using div tag the horizontal menu is not working as it works before without using the background color.
Problem with using background color is that after using it the horizontal menu context get outs of its div block of class= ".nav" when I shrink the browser size.

Navigation bar items moving

When I hover mouse over menu items they don't always fit perfectly within the navigation bar, I am also unable to fix that tiny gap between border and last navigation item and the gap changes when I zoom in/out the page, when I zoom in/out on google chrome and hover over menu items the hovered item gets taller than the rest of the bar. I've been trying to figure this out for quite some time now. Thank you for your help in advance.
Main objectives: getting rid of the gap next to "contact", making hovered items fit into the navbar, fixing google chrome navbar zooming issue.
Here's my codepen: http://codepen.io/anon/pen/QbBgKR
<nav class="menu">
<ul class="clearfix">
<li>HOME </li>
<li>PROFILE</li>
<li>STUFF</li>
<li>STUFF</li>
<li id="long"> PRODUCTS<span class="arrow">▼</span>
<ul class="sub-menu">
<li>STUFF1</li>
<li>STUFF2</li>
<li>STUFF3</li>
</ul>
</li>
<li>CONTACT</li>
</ul>
</nav><!-- menu -->
.clearfix:after {
display: block;
clear: both;
}
.clearfix {
margin-left: -37px;
}
nav {
font-size: 1em;
width: 700px;
background-color: #3A5199;
font-family: Verdana;
}
#current {
background-color: #6082ec;
}
.menu li {
display: inline-block;
list-style: none;
position: relative;
width: 15.2%;
text-align: center;
margin-left: -0.4%;
margin-right: -0.4%;
}
.menu li:hover {
background-color: #6082ec;
}
.menu a {
text-decoration: none;
color: white;
display: block;
padding-top: 10px;
padding-bottom: 10px;
}
#long {
width: 24%;
}
.menu .arrow {
font-size: 12px;
line-height: 0%;
}
.sub-menu {
width: 128px;
position: absolute;
z-index: -1;
opacity: 0;
transition: opacity linear 0.15s;
background-color : #6082ec;
}
.menu li:hover .sub-menu {
z-index:1;
opacity:1;
}
.sub-menu li:hover {
background-color: #3A5199;
}
.sub-menu li {
width: 131%;
display: block;
right: 39.2px;
}
.sub-menu a {
position: relative;
text-align: center;
}
Using a reset stylesheet or something like normalize.css will go a long way in fighting various margin, padding and display inconsistencies across browsers and you won't have to do negative margin "hacks" like you did for .clearfix.
Although you have calculated your percentages correctly for your li to add up to 100%, the gap to the right of Contact arises with the pixel rounding of the percentage width you've applied.
15.2% of 700px = 106.4px
The browser will likely round down to 106px. The change in the gap when zooming is also likely related to the percentage widths. At one zoom level the value gets rounded differently.
106px * 5 = 530px + 24% of 700px (168px) = 698px
Since you're using a fixed with on your <nav> element, why not use fixed widths on the li also? Or change up the percentage values a bit. 15.2% for the home link creates more padding between the text Home and the left and right edges of the li than it does for Profile.
Fixed Width Solution
/* default width for all li */
.menu li {
width: 108px;
}
/* Home */
.menu li:nth-child(1) {
width: 100px;
}
/* Products */
.menu li:nth-child(5) {
width: 168px;
}
As far as zooming in Chrome and getting a height change when hovering, I cannot replicate that issue.
Negative margin for UL is working.
.clearfix {
margin-left: -37px;
margin-right:-0.4%;
}
It's strange math her - imho.

css positioning problems with navigation

I'm not exactly sure if the navigation is properly written, but the issue does not always occur, it either occurs during initial website load or bit later on ones user browse few pages. The problem occurs with contents being positioned right, the content does not keep inline with the rest of the navigation and simply shifts down by about 6-10px to bottom.
HTML
<div class="nav">
<ul>
<li>ESGator Hosting</li>
<span class="right">
<li>Plans</li>
<li>Minecraft</li>
<li>About</li>
<li>Support</li>
<li><i class="icon-lock"></i> cPanel</li>
<li><i class="icon-envelope"></i> Mail</li>
<!-- not used <li><i class="icon-heart"></i></li> -->
</span>
</ul>
</div>
CSS
ul, ol, li {
font-size : 1em;
line-height : 1.6;
list-style : none;
}
.nav {
background : transparent;
width : 100%;
display : block;
position : fixed;
top : 0;
z-index : 100;
}
.add-bg {
background : #0a0a0a;
}
.static-bg {
background : #0a0a0a;
}
.nav ul {
width : auto;
max-width : 1024px;
min-width : 640px;
margin : 24px auto;
padding : 8px 0;
}
.nav li {
display : inline;
}
.nav a {
padding : 8px 0;
margin-left : 16px;
color : #7f848a;
font-size : 0.875em;
font-weight : 700;
text-transform : uppercase;
text-decoration : none;
transition : all 400ms;
text-align : left;
}
.nav a:hover, .nav a:focus {
color : #ffffff;
transition : all 400ms;
}
.nav a.active {
color : #ffffff;
}
.nav, .right {
float : right;
}
.nav a.brand {
color : #ffffff;
font-size : 0.875em;
font-weight : 700;
text-transform : uppercase;
text-decoration : none;
margin-left : 0;
transition : all 400ms;
}
.nav a.brand:hover, .nav a.brand:focus {
color : #f14f4f;
transition : all 400ms;
}
.nav a.button {
padding : 8px 10px;
background : #5aac6a;
color : #ffffff;
border-radius : 3px;
border-bottom : 2px solid #5a8a53;
transition : all 400ms;
}
.nav a.button:hover {
background : #6ca04d;
border-bottom : 2px solid #618f44;
color : #ffffff;
transition : all 400ms;
}
.nav a.button.feedback {
color : #f14f4f;
background : #eeeeee;
border-bottom-color : #d4d4d4;
}
.nav a.button.feedback:hover {
color : #f14f4f;
background : #dce0df;
border-bottom-color : #c4c8c7;
transition : all 400ms;
}
http://jsfiddle.net/f9cFP/
Alternatively you can refer to actual website to see what I mean here is a live page with footer and navigation being broken, esgator.com/mail
Maybe :
.nav, .right {
text-align: right;
}
instead of :
.nav, .right {
float : right;
}
Float create problems sometimes.

Can't Properly Float List To Right

Edit Mission accomplished, thank you for your replies. If anyone can help me with the click to expand/fade to view feature, it would be very helpful. I'm currently looking into it.
I am working on a very simple navigation for my website. I can't figure out why the texts can't stick to the right. Here is an example: http://jsfiddle.net/E6ArK/
I also hope to add a click-to-expand and maybe a fade into view feature some time. Any help would be much appreciated.
HTML
<div class="navigation">
<ul>
<li>
<h1>Applications</h1>
<ul>
<li>Not Available</li>
<li>Not Available</li>
</ul>
</li>
<li>
<h1>Forum</h1>
<ul>
<li>Not Available</li>
<li>Not Available</li>
</ul>
</li>
<li>
<h1>Guilds</h1>
<ul>
<li>Not Available</li>
<li>Not Available</li>
</ul>
</li>
<li>
<h1>Imageboards</h1>
<ul>
<li>People</li>
<li>Random</li>
<li>Screen Shots</li>
<li>Wallpapers</li>
</ul>
</li>
<li>
<h1>Projects</h1>
<ul>
<li>Not Available</li>
<li>Not Available</li>
</ul>
</li>
</ul>
</div>
CSS
/* NAVIGATION */
/* Heading */
.navigation ul li h1 {
background : #000000;
color : #ffffff;
display : table;
font-weight : 100;
margin : 0;
padding : 6px;
border-right : 3px solid #ffffff;
font-size : 28px;
margin-bottom : 3px;
}
/* Positioning */
.navigation {
font-family :'Open Sans Condensed', sans-serif;
margin : 12px;
position : fixed;
right : 0;
top : 0;
}
.navigation ul {
font-size : 20px;
margin : 0;
padding : 0;
text-align : right;
}
.navigation ul li {
clear : right;
color : #ffffff;
float : right;
list-style-type : none;
}
/* Second Level */
.navigation ul li ul {
display : none;
}
.navigation ul li:hover ul {
display : block;
}
.navigation ul li ul li {
background : #000000;
border-right : 3px solid #ff0000;
color : #ffffff;
display : table;
font-size : 18px;
margin-bottom : 3px;
padding : 6px;
}
You need to float the heading to the right as well. Add float: right to your block of rules for .navigation ul li h1. That should keep them stuck to the right.
You simply need to add a float:right property to your heading styling:
/* Heading */
.navigation ul li h1 {
background : #000000;
color : #ffffff;
display : table;
font-weight : 100;
margin : 0;
padding : 6px;
border-right : 3px solid #ffffff;
font-size : 28px;
margin-bottom : 3px;
float: right;
}
Hope that helps