For the Pulse template, how do I adjust the sizes of the Login and Register modalbox?
I've extended these to include Facebook Login and I need more space.
Thanks,
George
#gk-toolbar { overflow:hidden; color:#6c6459; float:right;display:inline-block;background:url("../images/login_bg_r.png") no-repeat scroll right 0 transparent;margin:11px 12px 0 0;padding-right:12px;height:24px; max-width:175px;}
Hi,
Please edit file template.css:
- Code: Select all
#gk-toolbar { overflow:hidden; color:#6c6459; float:right;display:inline-block;background:url("../images/login_bg_r.png") no-repeat scroll right 0 transparent;margin:11px 12px 0 0;padding-right:12px;height:24px; max-width:175px;}
and set "max-width" what you need.
if($('login')) $('login').addEvent("click",function(e){new Event(e).stop();
gk_popup('popup_login',600,80);
});
if($('login_noborder')) $('login_noborder').addEvent("click",function(e){new Event(e).stop();
gk_popup('popup_login',600,80);
});
if($('register')) $('register').addEvent("click",function(e){new Event(e).stop();
gk_popup('popup_register',500,300);
});
if($('login')) $('login').addEvent("click",function(e){new Event(e).stop();
gk_popup('popup_login',600,100);
});
if($('login_noborder')) $('login_noborder').addEvent("click",function(e){new Event(e).stop();
gk_popup('popup_login',600,100);
});
if($('register')) $('register').addEvent("click",function(e){new Event(e).stop();
gk_popup('popup_register',500,320);
});
