[Solved] Expandable Nav Bar in CSS? [closed]

I can’t visualize the website cause I dont have Java x86 installed in this machine. “So I’m trying to make a growing navbar, where the menu fades in and is dropdown menu in landscape” Maybe another alternative to Javascript is using CSS3 Animation. Read following links: http://www.w3schools.com/cssref/css3_pr_animation-keyframes.asp http://www.w3schools.com/cssref/css3_pr_animation.asp Stopping a CSS3 Animation on last frame … Read more

[Solved] navbar – making only one tab active with css [closed]

Yes. Check out the pure CSS way: ul {margin: 0; padding: 0; list-style: none; display: block;} ul li {display: inline-block; margin: 0; padding: 0; list-style: none;} ul li input {display: none;} ul li a {text-decoration: none; border: 1px solid #ccc; padding: 3px 10px; line-height: 1; color: #333; cursor: pointer;} ul li a:hover, ul li input:checked … Read more

[Solved] Don’t know where to start with this navigation bar (nav bar) [closed]

You can try something like this: <nav> <ul> <li> <a href=”http://www.google.nl/”>Menu item 1</a> </li> <li> <a href=”http://www.google.nl/”>Menu item 2</a> </li> <li> <a href=”http://www.google.nl/”>Menu item 3</a> </li> <li> <a href=”http://www.google.nl/”>Menu item 4</a> </li> </ul> </nav> With the CSS of: nav { height: 100px; background-color: blue; } nav > ul { list-style: none; } nav > ul … Read more