MyBB Community Forums

Full Version: Make this happen, i know it's an easy task but i couldn't do it
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
I can have a look at this for you if you like, just make a test user, and give them Admin access, (JUST FOR THE TEMPLATES) then pm them to me and I will see what I can do for you.
Can you please review your original question.
What do you still need doing, what has been fixed? etc
If everything is done, please mark this thread as solved.
Updated the original question, thanks BleepyEvans.
Your visited and hover colors are the same, try this;
.menu ul a:link {
	color: #CCCCCC;
	text-decoration: none;
}

.menu ul a:visited {
	color: #cccccc;
	text-decoration: none;
}

.menu ul a:hover, .menu ul a:active {
	color: #FF0000;
	text-decoration: none;
}
Not working... I seriously don't know what's up!
:/ How heavily are the header templates edited?
(2012-02-16, 08:24 PM)BleepyEvans Wrote: [ -> ]:/ How heavily are the header templates edited?

That may have some impetus on the problem but after inspecting the elements on the OP's site it would appear to be a css issue
(2012-02-16, 08:24 PM)BleepyEvans Wrote: [ -> ]:/ How heavily are the header templates edited?

<center><div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['imgdir']}/logo.jpg" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
			<div class="menu">
				<ul>
					<li><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['imgdir']}/toplinks/home.png" alt="" title="" /><font size="2px" color="#E0E0E0"><strong>Home</strong></font></a></li>
					<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.png" alt="" title="" /><font size="2px" color="#E0E0E0"><strong>{$lang->toplinks_search}</strong></font></a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}/toplinks/memberlist.png" alt="" title="" /><font size="2px" color="#E0E0E0"><strong>{$lang->toplinks_memberlist}</strong></font></a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}/toplinks/help.png" alt="" title="" /><font size="2px" color="#E0E0E0"><strong>{$lang->toplinks_help}</strong></font></a></li>
					<li><a href="{$mybb->settings['bburl']}/contact.php"><img src="{$theme['imgdir']}/toplinks/contact.png" alt="" title="" /><font size="2px" color="#E0E0E0"><strong>Contact</strong></font></a></li>
				</ul>
			</div></center>
This is the code for the menu and the logo.
Fixed it <font size="2px" color="#E0E0E0">, this was the bug!
Pages: 1 2 3