Hey there, and thanks ahead of time for the help.
Today I implemented a drop-down menu on my forum through template editing. By doing so I had to make all new links to have it replace my old nav bar. However, now that I don't have the old nav-bar I can't actually see if I have new messages.Â
I was wondering if it's possible to make the "Mailbox" text change colors if I have a new message, or have it display a number next to it. I've been trying to figure it out for a bit now, but my coding isn't the greatest right now so it's a little hard for me.Â
My forum is: Here
Here is the template code:
Today I implemented a drop-down menu on my forum through template editing. By doing so I had to make all new links to have it replace my old nav bar. However, now that I don't have the old nav-bar I can't actually see if I have new messages.Â
I was wondering if it's possible to make the "Mailbox" text change colors if I have a new message, or have it display a number next to it. I've been trying to figure it out for a bit now, but my coding isn't the greatest right now so it's a little hard for me.Â
My forum is: Here
Here is the template code:
- Code:
<ul class="topnav">
<li><a href="/">Home</a></li>
<li>
<a href="#">Server Information</a>
<ul class="subnav">
<li><a href="/">Server Files</a></li>
<li><a href="/t1-server-rules">Server Rules</a></li>
<li><a href="/t2-forum-rules">Forum Rules</a></li>
<li><a href="/t9-forum-information-compendium">Forum Information Compendium</a></li>
<li><a href="/t13-regarding-the-reporting-of-players">Reporting Players</a></li>
<li><a href="/t3-important-regarding-bugs">Reporting Bugs</a></li>
</ul>
</li>
<li>
<a href="#">Useful Resources</a>
<ul class="subnav">
<li><a target="_blank" href="http://www.eqemulator.org/">EQEmulator Website</a></li>
<li><a href="/h1-timezone-clocks">Timezone Clocks</a></li>
</ul>
<li>
<a href="#">Miscellaneous</a>
<ul class="subnav">
<li><a href="/faq">FAQ</a></li>
<li><a href="/memberlist">Forum Members</a></li>
<li><a href="/calendar">Calendar</a></li>
<li><a href="/search">Advanced Search</a></li>
</ul>
</li>
<!-- BEGIN switch_user_logged_in -->
<li><a href="/groups">Groups</a></li>
<li><a href="/profile?mode=editprofile">Profile</a></li>
<li><a href="/privmsg?folder=inbox" class="p-m">Mailbox</a></li>
<li><a href="/login?logout">Logout</a></li>
<!-- END switch_user_logged_in -->
<!-- BEGIN switch_user_logged_out -->
<li><a href="/register">Register</a></li>
<li><a href="/login">Login</a></li>
<!-- END switch_user_logged_out -->
</ul>