how to put shortcode to the top of the page – theme 2014

You probably want to edit the header.php of your theme and use the WordPress function do_shortcode

$myShortCode = "[your_short_code]"; 
do_shortcode($myShortCode);

This will output the content generated by your shortcode wherever you want.