Probably a jQuery script, perhaps via a plugin, not necessarily. I know there are several WordPress Ajax login plugins.
I have a similar toggle hide script in my test site, but without the cool jQuery animation effect. They did a very nice job. I should look into that site for “ideas”…
I would love to know this is done too.
I would love to know this is done too.
Here’s one example.
You probably have to change $ to jQuery for it to work within WordPress, like this:
//toggle login block horizontally
jQuery(".login-toggle").click(function(){
jQuery("#right-ear-inner").slideFadeToggle("slow");
jQuery(this).toggleClass("login-toggle-close"); return false;
});
More examples and info.
If you inspect the html (view source in your browser), you can see the code that is used.