MyBB Community Forums

Full Version: GreenNight template
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I just installed the GreenNight template but there's a error in it.

Screenshot:

[Image: nb6hrp.jpg]

In the header there's a avatar and next to it there's a welcome message. The avatar overlays the message. How do i have to change this?
Mind giving the code of the header and header member templates?
Header:

<div id="container">
		<a name="top" id="top"></a>
		<div id="header">
<div id="useravatar">
<img src="{$mybb->user['avatar']}" width="65px" height="65px" />
</div>
<div id="userinfo">
{$welcomeblock}
</div>
			<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
</div>
<div class="navbar">
<ul>
<li><a href="{$mybb->settings['bburl']}/index.php"><b>Home</b></a></li>
<li><a href="{$mybb->settings['bburl']}/usercp.php"><b>User CP</b></a></li>
<li><a href="{$mybb->settings['bburl']}/search.php"><b>Search</b></a></li>
<li><a href="{$mybb->settings['bburl']}/calendar.php"><b>Calendar</b></a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><b>Help</b></a></li>
</ul>
</div>
			<hr class="hidden" />
		<hr class="hidden" />
		<br class="clear" />
		<div id="content">
			{$pm_notice}
			{$bannedwarning}
			{$bbclosedwarning}
			{$unreadreports}
			<navigation>
			{$news_ticker}
			<br />

Which member template do I have to post?
The user.

Also mind posting the css for userinfo and useravatar?
The logo is to big... Same Problem Wink
Is there another way to solve this problem than reduce the logo size?

(2010-04-26, 03:42 PM)i88power88 Wrote: [ -> ]The logo is to big... Same Problem Wink
if you give your site link, then it can be solved easily..
(2010-05-01, 03:13 PM)RickR86 Wrote: [ -> ]Is there another way to solve this problem than reduce the logo size?

(2010-04-26, 03:42 PM)i88power88 Wrote: [ -> ]The logo is to big... Same Problem Wink

Maybe you have extra invisible space on your logo if you inbox me the link to your forum &/or logo i can help you will take 5 minutes.
you could remove this: <img src="{$mybb->user['avatar']}" width="65px" height="65px" /> so an avatar don't show up. or u can easily change the width and height to a smaller pixel like 25 - 25, or like 30 - 30 so it does not over lap.
I removed it and it's ok now, thanks Smile