MyBB Community Forums

Full Version: How do I edit the navigation bar?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
You can add an icon by giving the a element a class. You then need to simply add a style rule to the global.css for that class. Notice I added class="creditsLink" to the HTML then added the following to the CSS:

#panel .upper ul.top_links a.creditsLink {
    background-image: url(images/1/icons/credits.gif);
}

Simply do the same for each link with different classes Smile
Thanks!
Pages: 1 2