MyBB Community Forums

Full Version: How do I but my own EXTRA navbar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to put my own navbar in my header


<!DOCTYPE html>
<html>
<head>
<style>
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

li {
    float: left;
    border-right:1px solid #bbb;
}

li:last-child {
    border-right: none;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover:not(.active) {
    background-color: #111;
}

.active {
    background-color: #FF0000;
}
</style>
</head>
<body>

<ul>
  <li><a class="active" href="#home">Home</a></li>
  <li><a href="#news">News</a></li>
  <li><a href="#contact">Contact</a></li>
  <li style="float:right"><a href="#about">About</a></li>
</ul>

</body>
</html>
But everytime I try my header mixes everything last time I shutted the whole forum down because I erase too much an my forums are not visible anymore. A whole forum shutdown that really bad.


Forum: forum.clubam.ml
I have putted the copyright notice in my footer. I claimed offical rights to get support from this forum.