1. <style>
  2. jQuery('.thumb-view article.thumb-image-main').each(function(){
  3. var hreftitle = jQuery(this).find('.entry-content-title h4 a').attr('href');
  4. jQuery(this).find('.entry-content').click(function(){
  5. window.location = hreftitle;
  6. jQuery(this).css('cursor', 'pointer');
  7. });
  8. });
  9. </style>