MyBB Community Forums

Full Version: 2 questions--"Forum" text blocking my description
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
First Question: As you can see here @ montagesnmore.com/forum --wherever I have a forum, it blocking my description. I know its a CSS error, but where is the template to edit and correct this?

Second Question: Where it says login and password, on the right it says " undefined" how can I fix this to be "Remember Password" or "Remember me." thanks!

-alex
1) AdminCP > Themes > Your theme > global.css > and in .theadmain class, increase the value of height from 29px to approx. 39px

2) AdminCP > Templates > Your theme's templates > Header Templates > header_welcomeblock_guest > and paste the entire template's code here.
Thanks for the reply. I fixed part 1. Here is part 2 info:

<script type="text/javascript">
<!--
lang.username = "{$lang->login_username}";
lang.password = "{$lang->login_password}";
lang.login = "{$lang->login}";
lang.lost_password = " &mdash; <a href=\"{$mybb->settings['bburl']}/member.php?action=lostpw\">{$lang->lost_password}<\/a>";
lang.register_url = " &mdash; <a href=\"{$mybb->settings['bburl']}/member.php?action=register\">{$lang->welcome_register}<\/a>";
// -->
</script>
<span id="quick_login" class="topsec"><span class="float_right" style="margin-left: 25px; text-align: right;">{$lang->welcome_current_time}</span>
{$lang->welcome_guest} <span class="block"><a href="{$mybb->settings['bburl']}/member.php?action=login" class="login" onclick="MyBB.quickLogin(); return false;">{$lang->welcome_login}</a></span>&nbsp;<span class="block"><a href="{$mybb->settings['bburl']}/member.php?action=register" class="register">{$lang->welcome_register}</a></span></span>

Nvm, I fixed it. I had to add this:

    lang.remember_me = "{$lang->remember_me}"; 

in Javascript after lang.register_url...etc