MyBB Community Forums

Full Version: Forum Tab
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys, So I tried adding a new tab on my forum called "donate" which redirects the user to the donate page where they can donate for a game server I host, but when you go and look at it there is the search logo (magnifying glass) next to it for some reason, how do I remove it?

Forum: templegaming.com
screenshot: http://gyazo.com/66079717b332f425d8b89347c3442861

Code:
<div id="container">
		<a name="top" id="top"></a>
		<div id="header">
			<div id="logo">
				<div class="wrapper">
					<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
					<ul class="menu top_links">
						<li><a href="{$mybb->settings['bburl']}/tickets.php" style="background-position: 0 20px;"><img src="images/toplinks/tickets.gif" alt="" title="" />{$lang->toplinks_tickets}</a></li>
		{$menu_portal}
						{$menu_search}
						{$menu_memberlist}
						{$menu_calendar}
						<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a></li>
                       <li><a href="{$mybb->settings['bburl']}/donate">Donate</a></li>   
					</ul>
				</div>
			</div>
			<div id="panel">
				<div class="upper">
					<div class="wrapper">
						{$quicksearch}
						{$welcomeblock}
					<!-- </div> in header_welcomeblock_member and header_welcomeblock_guest -->
				<!-- </div> in header_welcomeblock_member and header_welcomeblock_guest -->
			</div>
		</div>
		<div id="content">
			<div class="wrapper">
				{$pm_notice}
				{$bannedwarning}
				{$bbclosedwarning}
				{$unreadreports}
				{$pending_joinrequests}
				{$awaitingusers}
				<navigation>
				<br />
Upload the image you want show into /images/-folder.


Add an inline style to that link - eg.:
<li><a href="{$mybb->settings['bburl']}/donate" style="background-image: url(images/YOUR-UPLOADED-IMAGE.png)">Donate</a></li> 

or add a css selector - eg:
<li><a href="{$mybb->settings['bburl']}/donate" class="donate">Donate</a></li> 

and define the css rule in theme global.css - like:
#logo ul.top_links a.donate{
    background-image: url(images/YOUR-UPLOADED-IMAGE.png);
}
(2014-12-26, 11:04 PM)SvePu Wrote: [ -> ]Upload the image you want show into /images/-folder.


Add an inline style to that link - eg.:

<li><a href="{$mybb->settings['bburl']}/donate" style="background-image: url(images/YOUR-UPLOADED-IMAGE.png)">Donate</a></li> 

or add a css selector - eg:

<li><a href="{$mybb->settings['bburl']}/donate" class="donate">Donate</a></li> 

and define the css rule in theme global.css - like:

#logo ul.top_links a.donate{
    background-image: url(images/YOUR-UPLOADED-IMAGE.png);
}

I would do that, but I dont want an image next to it, I just want it to say "Donate" w/o an image
<li><a href="{$mybb->settings['bburl']}/donate" style="background:none;">Donate</a></li>
(2014-12-27, 07:45 AM)mmadhankumar Wrote: [ -> ]
<li><a href="{$mybb->settings['bburl']}/donate" style="background:none;">Donate</a></li>

Thank you Smile