Can anyone offer guidance on how to reduce the width of the Chat button in this demo when it is not clicked? I've been struggling to find a solution but haven't had any success so far.
JS
function showChat() {
jQuery("#blk-collaboration .chatbox").slideToggle("slow",function(){
jQuery("#blk-collaboration #toggle").css("background","#45A1F1");
});
}
$(document).ready(function(){
$('.chatbox').hide();
});