(01-23-2012, 12:15 PM)AceInfinity Wrote: Lost Password? Isn't that in the signup location? It's a global link though, If you see a div around it or something then append your link attributes to that div, specifying it to look for <a elements as well...
Example:
Code:#divname a {
}
Otherwise if it already uses a class then:
Code:#divname a.classname {
}
Should work I believe... What forum is this?
It is in the sign up location but as you say, it's a global link, so it's taking it's color from a:link.
It's not wrapped in a div but I could try doing that. I tried simply appending "class:"a1"" to the <a> immediately after the href, which worked for the other links, but this one seems to be different. Here's the code:
Code:
<script type="text/javascript">
<!--
lang.username = "{$lang->login_username}";
lang.password = "{$lang->login_password}";
lang.login = "{$lang->login}";
lang.lost_password = " — <a href=\"{$mybb->settings['bburl']}/member.php?action=lostpw\">{$lang->lost_password}<\/a>";
lang.register_url = " — <a href=\"{$mybb->settings['bburl']}/member.php?action=register\">{$lang->welcome_register}<\/a>";
lang.remember_me = "{$lang->remember_me}";
// -->
</script>
Tried wrapping it in div tags and it's still throwing an error.