Hey guys I am looking for reviews of my new gaming website - 'Game Town' by Out Of Control Videos Link: http://gametown.outofcontrolvideos.com/ Thanks!!
a good design. make sure the link is in entire div of the tile, instead of heading only, i had to move mouse a bit to see IF there is a link there.
Like the concept of showing the the picture of the games but I think that those pictures should be clickable too. That is, when a user clicks on it then they can directly go to the game page and play the game. The box add on the lower left panel should probably be shifted to the right hand side for a much higher CTR. A more detailed review of each game would be great. You could possibly add it below the game on the game page itself.
Thanks guys - Looking into both your opinions, this site is actually running in wordpress so.... Also - This is the code for the images/links - how can i make the whole image clickable? <?php /** * @package web2feel * @since web2feel 1.0 */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class('portfolio-box grid_3'); ?>> <?php $thumb = get_post_thumbnail_id(); $img_url = wp_get_attachment_url( $thumb,'full' ); //get full URL to image (use "large" or "medium" if the images too big) $image = aq_resize( $img_url, 255, 255, true ); //resize & crop the image ?> <a href="#" class="hoverblock"> <?php if($image) : ?> <img class="portpic" src="<?php echo $image ?>"/> <?php endif; ?> </a> <div class="cover"> <div class="coverinfo"> <h2><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'web2feel' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <?php wpe_excerpt('wpe_excerptlength_index', ''); ?> </div> </div> </article> PHP:
Programming or modifying WP codes is something I am not very good at. But if you start a thread in the programming section for the clickable pictures thing then that would get your question answered promptly.