Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

how to center navigation bar

LulzSec123

Recruit
Basic Member
Messages
12
Reaction score
0
Points
16
..HTML

<!DOCTYPE html>
<html>
<head>
<title>My First Website</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>

<header>
<div class="navbar">
<nav>
<ul>
<li><a>Home</a></li>
<li><a>Anime Season Guid</a></li>
<li><a>Anime Movies</a></li>
<li><a>Manga</a></li>
<li><a>Art</a></li>
<li><a>Cosplay</a></li>
<li><a>About
<ul>
<li><a>Contact us</a></li>
</ul>
</a></li>
</ul>
</nav>
</div>
</header>

</body>
</html>


..CSS

body {
background: url("image/anime_scenery1.jpg") no-repeat 100% 100% fixed;
background-size: cover;
}

.navbar{
position: fixed;
color: white;
}

.navbar ul {
margin: 0px;
padding: 0px;
list-style: none;
}

.navbar ul li {
float: left;
width: 200px;
height: 40px;
background-color: black;
opacity: .7; /* to make the background transparent */
line-height: 40px;
text-align: center;
}

.navbar ul li a {
text-decoration: none;
color: white;
display: block;
}

.navbar ul li a:hover {
background-color: green;
}

.navbar ul li ul li { /* to hide navbar */
display: none;
}

.navbar ul li:hover ul li { /* to show navbar */
display: block;
}

View attachment 352282View attachment 352282
 

Attachments

  • Untitled1.jpg
    Untitled1.jpg
    329.9 KB · Views: 7
Back
Top Bottom