• I would like some help with fixing an issue with the theme I am using. My website is

    I love the theme, but my first two posts are running together and I’m not sure how to fix it. Also, the font size for the posts is very small. Can I change the font size?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Are you self-hosting your blog? The problem with the posts running together is the placement of the pictures in the Perfect way to cook perfect food. The picture is repeated and extends beyond the length of the post thus running into the next post. Remove the picture and repost it as a single pix rather than twice as it currently is. If you need both pictures then you must move it further up the page to align it properly with the end of your post.

    Font size can be controlled in the post editor. Use a larger font size when you edit the post. If you are using a BLOG CLIENT and posting from it then use a larger font size in your blog client.

    This should help. Open the style.css file for your theme and find this piece of code:

    .entry{
    	padding:10px 10px 10px 20px;
    	font-size:12px;
    	color:#47401a;
    }

    You want to do 2 things to this. First, you can change the font size by adjusting font-size:12px; to font-size:14px; or something. Play around with the number until you like the size. Second, you’ll want to add overflow:hidden; at the bottom. That should keep the pictures from falling out of the post in most modern browsers. If you find a browser that still lets the pictures fall out, let me know and I’ll try to get you a fix for it. Here’s an example of what the code should look like when you’re done:

    .entry{
    	padding:10px 10px 10px 20px;
    	font-size:14px;
    	color:#47401a;
            overflow:hidden;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Help with formatting theme’ is closed to new replies.