Hello, I have a wordpress blog setup and i would like to have a couple things done but im not very familiar with coding etc and dont want to make any mistake. I would like to have adsense added into the site , with ads running between post , would also like to add a little color to the site , something simple like just adding a background color instead of plain white. also would like to add a couple things onto the right sidebar like "most recent post" and have (contents/tags/Meta) words removed from right side. If interested PM me for site url and a ballpark price range. Thanks
Adsense Manager can handle the ads easy enough. Changing the background colour is a bit harder. Go to Design > Theme Editor. It should start on the stylesheet. Look from the top until you find the first background property. It usually looks like this: body { background: #fff; } Code (markup): Change #fff to a new colour from a HTML Color Chart, and don't forget the semicolon. Then press the Update File button. To add Recent Posts and remove the other stuff, try Design > Widgets.
Plugin Wordpress - Nofollow Or you can code it into your theme. In comments.php, search for <?php comment_author_link(); ?> and replace it with <a href="<?php comment_author_url(); ?>" rel="nofollow"><?php comment_author(); ?></a> Should work but I haven't tried it.