Hey,
as for linking your image to the single post you can go in your index.php file and replace
echo '<div class="entry-previewimage rounded preloading_background">';
echo $preview_image;
echo '</div>';
}
by
echo '<div class="entry-previewimage rounded preloading_background"><a href="'.get_permalink().'">';
echo $preview_image;
echo '</a></div>';
}
You can center your menu items by adding
text-align:center;
to the following class in your style.css
.catnav li a strong {
(On the site your username is linked to I don't see the "boxed" menu though - am I missing something?)
To give a different background styling for your menu item's you'd check on their class and create a new class in your style1.css or style2.css etc depending on which theme version you're using..
If you can link me and point out exactly which menu items you'd want to have changed I can give you specific instructions.