MyBB Community Forums

Full Version: letter color mozilla vs Internet Exploder
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
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>";

Do not know how to give those 2 variables the black color.
All other I can do because in FP (frontpage) they are vissible and its easo to change that.
Those two line will come only after clicking on the link register
Replace:
{$lang->lost_password}
With:
<font color="black">{$lang->lost_password}</font>

And:
{$lang->welcome_register}
With:
<font color="black">{$lang->welcome_register}</font>

Give that a go.
The problem with the color of the letters is solved. But the code you add a post ago do not work the button for login will change in undefined so an error.
Pages: 1 2