Wordpress theme help

Discussion in 'Design' started by capebretoner, Nov 14, 2008.

  1. #1
    I need some help fixing a Wordpress theme. It mainly regards CSS fixing to make the posts more readable and there are text alignment issues where the tag cloud is jumbled, etc.

    If you can help please send me a PM and I will send you a link of the site so that you can get an idea and I will send you the CSS file so that you can give me a quote.

    Thanks
     
    capebretoner, Nov 14, 2008 IP
  2. spencerp

    spencerp Well-Known Member

    Messages:
    222
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    130
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #2
    Hey there, I hope my suggestion via PM was what you were looking for? :) For the others to know what I suggested, I'll rewrite it here...

    Find this line in the css file:

    .entry {
    font-size: 13px;
    padding-top: 15px;
    }
    Code (markup):
    And make it like this below:

    .entry {
    font-size: 1.4em;
    padding-top: 15px;
    line-height:1.5em;
    }
    Code (markup):
    Then save the changes, refresh the blog index page.

    OR, you could do this if you don't want the line space there, and just have the font bigger?

    .entry {
    padding-top: 15px;
    font-size:1.4em;
    }
    Code (markup):
    Took me a few seconds to find this, and figured out what might work for you.
     
    spencerp, Nov 16, 2008 IP
    capebretoner likes this.