MyBB Community Forums

Full Version: line break in password box
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi
How to put a line break between the password box and the "Lost Password" text / line, so it's forced to appear on a new line?

Where and to post it, steps please, uber noob here.
Thanks.
find code like below in the header_welcomeblock_guest template
<input name="quick_password" id="quick_login_password" type="password" value="" class="textbox" /> <a href="{$mybb->settings['bburl']}/member.php?action=lostpw" class="lost_password">{$lang->lost_password}</a>
you can add <br /> before <a href="{$mybb->settings['bburl']}/member.php?action=lostpw" class="lost_password">
Thank you, I will check that.