1- Find .widget-title on your style.css file around line 1268 and replace everything with this:

.widget-title {
color: #222222;
font-family: Myriad Pro;
font-size: 25px;
font-style: italic;
margin-bottom: 15px;
text-shadow: 0 1px 1px #FFFFFF;
}
2:

Edit loop.php and find:
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
<div id="nav-below" class="navigation">
<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'smartone' ) ); ?></div>
<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'smartone' ) ); ?></div>
</div><!-- #nav-below -->
<?php endif; ?>
Replace it with:

<?php wp_pagenavi(); ?>
and install the plugin.

3- Random post: http://wordpress.org/extend/plugins/random-post-link/
4- Use contact form 7 and configure it.
RT Reviewed by RT on . Little help needed in WP Modification Hey guys, i've got a new site http://www.trollmania.org/ and i need certain wp modifications <3 1. I want to change the font style of the sidebar text. To Myriad Pro font with no italics and size 25px. 2.I also need to add "page_navi" code to replace the current navigation method, where do i replace it :| 3. How to add "random posts" link on the menu bar., and it should obviously show random posts. 4. I need to add a "Submit a pic" page, would a contact form do the Rating: 5