Skip to content

Instantly share code, notes, and snippets.

@lmorillas
Created June 27, 2015 21:44
Show Gist options
  • Save lmorillas/dcfe37914c2f4253f58b to your computer and use it in GitHub Desktop.
Save lmorillas/dcfe37914c2f4253f58b to your computer and use it in GitHub Desktop.
Move the exhibit legend
$(document).bind("dataload.exhibit", function() {
$('div#leyenda').append($('div.exhibit-legendWidget'));
$('div#leyenda').show();
});
<div id="leyenda">
...
</div>
span.exhibit-legendWidget-entry {
display: block;
text-align: left;
}
div.exhibit-legendWidget {
text-align: left;
}
div#leyenda {
border-radius( 30px);
border: solid #ddd 2px;
padding: 5px;
display: none;
margin-top: 10px;
}
span.exhibit-legendWidget-entry-title {
font-weight: normal;
font-size: 80%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment