Need a little wordpress work

Discussion in 'HTML & Website Design' started by sidfromla, Jul 31, 2008.

  1. #1
    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
     
    sidfromla, Jul 31, 2008 IP
  2. Cash Nebula

    Cash Nebula Peon

    Messages:
    1,197
    Likes Received:
    67
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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.
     
    Cash Nebula, Jul 31, 2008 IP
  3. khaty

    khaty Active Member

    Messages:
    399
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    73
    #3
    what about changing the "no follow" to "do follow" on comments?
     
    khaty, Jul 31, 2008 IP
  4. Cash Nebula

    Cash Nebula Peon

    Messages:
    1,197
    Likes Received:
    67
    Best Answers:
    0
    Trophy Points:
    0
    #4
    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. :)
     
    Cash Nebula, Aug 1, 2008 IP