MyBB Community Forums

Full Version: How do I...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello!
How do I remove these lines inbetween the toplinks??
Hi,
Please post your header template's code so we can better assist you.
<a name="top" id="top"></a>
    <div align="left" style="margin: 0px;" class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" /></a></div>
	<div id="container">
		<div id="header">

			<div class="menu">
				<ul>
<center><li><a href="http://www.amywinehouseforum.co.uk/search.php">search</a></li>

<li><a href="http://www.amywinehouseforum.co.uk/memberlist.php">memberlist</a></li>

<li><a href="http://www.amywinehouseforum.co.uk/calendar.php">calendar</a></li>

<li><a href="http://www.amywinehouseforum.co.uk/misc.php?action=help">help</a></li>

<li><a href="http://www.amywinehouseforum.co.uk/pages.php?page=rules">rules</a></li>

<li><a href="http://www.amywinehouseforum.co.uk/misc.php?action=staffapp">staff vacancies</a></li>

<li><a href="http://www.amywinehouseforum.co.uk/pages.php?page=affiliates">affiliates</a></li>

<li><a href="http://www.amywinehouseforum.co.uk/gallery">gallery</a></li></center>
				</ul>
			</div><hr class="hidden" />
			<div id="panel">
<br />
				{$welcomeblock}
			</div>
		</div>
		<hr class="hidden" />
		<br class="clear" />
		<div id="content">
			{$bannedwarning}
			{$bbclosedwarning}
			{$unreadreports}
			<navigation>
			<br class="clear" />
apart from the strange <center> tag: Whats your css for class="menu" (and the ul / li)
Probably some crappy borders =P
Yaa Wrote:apart from the strange <center> tag: Whats your css for class="menu" (and the ul / li)

the center tags are there so my links appear in the middle of the page.
as for the css thingy... i don't know what you mean.
amywinehouseforum.co.uk Wrote:
Yaa Wrote:apart from the strange <center> tag: Whats your css for class="menu" (and the ul / li)

the center tags are there so my links appear in the middle of the page.
as for the css thingy... i don't know what you mean.

Did you revert any templates at all by the looks of it it should have a vB header on that theme?
yeh i reverted the template back to it's original because i thought that might fix my problem with logging out... atleast that's the information i got from this forum. but alas, it didnt.
amywinehouseforum.co.uk Wrote:the center tags are there so my links appear in the middle of the page.
as for the css thingy... i don't know what you mean.
The center tags have been depreciated. Really a CSS alternative should be used instead.
amywinehouseforum.co.uk Wrote:yeh i reverted the template back to it's original because i thought that might fix my problem with logging out... atleast that's the information i got from this forum. but alas, it didnt.

Okay remove and re-install that theme

and then go into Templates > your theme > header_welcomeblock_member

Find :
<td class="topmenu" width="1%"><a href="member.php?action=logout&uid={$mybb->user['uid']}">Logout</a>
</td>

Replace With:
<td class="topmenu" width="1%"><a href="member.php?action=logout&uid={$mybb->user['uid']}&sid={$session->sid}">Logout</a>
</td>
Pages: 1 2