Skip to content

Instantly share code, notes, and snippets.

@skipjac
Created November 25, 2014 00:36
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skipjac/5af2b6d93dfd25dc18b6 to your computer and use it in GitHub Desktop.
Save skipjac/5af2b6d93dfd25dc18b6 to your computer and use it in GitHub Desktop.
Changing the size of HelpCenter nesty fields.
.nesty-input {
max-width: 555px;
}
$(document).ready(function(){
$('div').one('DOMNodeInserted', function(e){
$('.nesty-panel').one('DOMNodeInserted', function(e){
$(this).attr("style","max-width: 555px; width: 500px; top: "+e.currentTarget.style["top"]+" left: "+e.currentTarget.style["left"]);
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment