I am Author of New York theme. Loomz contacted me personally via e-mail and i recommended him replacing header h1 with img html tag with blog url. If somebody else is looking for the solution here it is:
1. Open header.php
2. On line 36 find the following code
<h1><a class="head" href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
<h2><?php bloginfo('description'); ?></h2>
3. Place your Logo file to wp-content/themes/new-york/images directory and replace above code with following code.
<a href="<?php echo get_settings('home'); ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/logo.png" alt=""/></a>
change ‘logo.png’ to whatever your logo name is.