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
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.