MyBB Community Forums

Full Version: Question on login/register area
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I would like to increase the font size for login/register on the top left. I looked in my templated header, but can't find the exact area to edit the text.

Any help would be appreciated.

Thanks!
Modify the header_welcomeblock_guest. Example: Replace the contents of the template with this:

<span style="float:right;">{$lang->welcome_current_time}</span>
		<font size="5">{$lang->welcome_guest} (<a href="{$mybb->settings['bburl']}/member.php?action=login">{$lang->welcome_login}</a> &mdash; 
</font> <a href="{$mybb->settings['bburl']}/member.php?action=register">
<font size="5">{$lang->welcome_register}</font></a>)</p>

You can always increase or decrease the font size in the above code.

Regards