Remove the inline styling added in wp_get_attachment_image()

You could try using get_attachment_image_url() instead. This will give you the url for the full image. You can

Call it like this:

echo '<img class="blue_logo" src="'.get_attachment_image_url($id, 'blue_logo').'">';