Hi Alex,
That functionality isn’t part of the plugin, but I’ve written up a little example of how a developer might be able to approach this with custom code.
You could create two CSS classes, one to show the Infobox section and one to hide the section. You can set the class that hides the section to default and use Javascript to switch the class on click or hover.
Example:
/*CSS Classes*/
.hide {display:none;}
.show{display:block;}
//Javascript for click
$(“#infobox-section”).click(function(){
$(this).removeClass(“hide”);
$(this).addClass(“show”);
});
//Javascript for hover
$(“#infobox-section”).hover(function(){
$(this).removeClass(“hide”);
$(this).addClass(“show”);
});
I hope that helps!
Nathan