SyntaxFix
Write A Post
Hire A Developer
Questions
Here is an example on how to center an object vertically with jQuery:
var div= $('#div_SomeDivYouWantToAdjust'); div.css("top", ($(window).height() - div.height())/2 + 'px');
But you could easily change that to whatever your needs are.