You mean the image preloader correct Neomania? If you wish to take it off then open up /wp-content/themes/awake/lib/functions/shortcode.php and on lines 131 - 135 you should see this,
$out .= '<div class="img_loader' .$hover_class. ' bg_hover' .$class.$last. '">';
$portfolio_img_link = ($link == 'post' && !$portfolio_video) ? $portfolio_img_link = 'href="' .$permalink : $portfolio_img_link = 'rel="lightbox[' .$set_id. ']" href="' .$portfolio_links;
$out .= '<a class="load_img" ' .$portfolio_img_link. '"><span class="rm_img noscript"><img class="framed portfolio_hover" src="' .$gallery_image_url. '" height="' .$img_height. '" width="' .$img_width. '" alt="" /></span></a>';
Go ahead and change it like this,
$out .= '<div class="bg_hover' .$class.$last. '">';
$portfolio_img_link = ($link == 'post' && !$portfolio_video) ? $portfolio_img_link = 'href="' .$permalink : $portfolio_img_link = 'rel="lightbox[' .$set_id. ']" href="' .$portfolio_links;
$out .= '<a class="load_img" ' .$portfolio_img_link. '"><img class="framed portfolio_hover" src="' .$gallery_image_url. '" height="' .$img_height. '" width="' .$img_width. '" alt="" /></a>';
This will take off the image preloader for your portfolio, to do the same with the fancy_images shortcode then find lines 557 - 559,
$out .= '<li class="alignleft webtreats_mini_gallery_item img_loader bg_hover">';
$out .= '<a title="' .$title. '" class="load_img"' .$inline_style.$link. '>';
$out .= '<span class="rm_img noscript"><img class="framed portfolio_hover" height="' .$height. '" width="' .$width. '" alt="' .$alt. '" title="' .$title. '" src="' .$image_url. '" /></span>';
And change them like this,
$out .= '<li class="alignleft webtreats_mini_gallery_item bg_hover">';
$out .= '<a title="' .$title. '" class="load_img"' .$inline_style.$link. '>';
$out .= '<img class="framed portfolio_hover" height="' .$height. '" width="' .$width. '" alt="' .$alt. '" title="' .$title. '" src="' .$image_url. '" />';
Let us know if this is what you were wanting to do Neomania.