MyBB Community Forums

Full Version: Space member block links?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My current member block looks like this:

[attachment=38288]

I want it to look like this:

[attachment=38289]

How can I space them out? Is it the <div> </div> code?

This is what it looks like at the moment, I want the post search to be on the right side, but every time I try to do it, it screws up the whole forum alignment.

[attachment=38291]


Here's the code: (It was amissing </ul> and some <li></li> I also had to add <ul class="menu user_links">

<!-- Continuation of div(class="upper") as opened in the header template -->
	<span class="welcome">{$lang->welcome_back} <a href="{$mybb->settings['bburl']}/member.php?action=logout&amp;logoutkey={$mybb->user['logoutkey']}" class="logout">{$lang->welcome_logout}</a></span>
	</div>
</div>
<div class="lower">
	<div class="wrapper">
		<ul class="menu panel_links">
			{$usercplink}
			{$myalerts_headericon}{$modcplink}
			{$admincplink}
		</ul>
		<ul class="menu user_links">
			{$pmslink}
	<li>
<a href="{$mybb->settings['bburl']}/search.php?action=getnew">New</a>	
			</li>
		<li>
<a href="{$mybb->settings['bburl']}/search.php?action=getdaily">24 Hours</a>
				</li>
			<li>
<a href="search.php?action=finduserthreads&amp;uid={$uid}">My Threads</a>
			</li>
			<li>
<a href="search.php?action=finduser&amp;uid={$uid}">My Posts</a>	
			</li>
		</ul>
		</div>
	<br class="clear" />
</div>