Re: New Theme – Need Theme Name
Can you open the slide.js that comes with the theme and replace all the contents with this:
jQuery.noConflict();
jQuery(document).ready(function($){
// Expand Panel
$("#open").click(function(){
$("div#panel").slideDown("slow");
});
// Collapse Panel
$("#close").click(function(){
$("div#panel").slideUp("slow");
});
// Switch buttons from "Log In | Register" to "Close Panel" on click
$("#toggle a").click(function () {
$("#toggle a").toggle();
});
});