MyBB Community Forums

Full Version: login fields
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,
How can we make the login fields for username and password, have a colored border when clicking on them....
[Image: loginen2.png]

like on http://mybbsource.com
Take a look at the templates for the registration page.
You need some CSS that handles the "focus" pseudo class

Try something like the following in the theme editor:
input:focus,textarea:focus { border: 1px solid orange }
so that means i have to define onfocus function somewhere or is it predefined.
where exactly do I edit this.
I tried this in template magaer of login box but didnt work
I think he wants you to create a new class in the theme editor that contains that line, then in the text box HTML tag, add
class="yourclassname"
i made this class in the theme editor, in the global css lilke...

input:focus,textarea:focus { border: 1px solid orange }

then I went to Ungrouped Templates...loginbox

<td class="trow2"><input type="text" class="textbox" class="focus" name="username" size="30"


but this didnt work..
i am sure i am not doing this the right way.