Hi when you go to the article on the Blog page the titles are high lighted. How would I make the titles of the Blog bolded or at least on their own line on the main blog page. When I add the extra line it does not show up on the main blog page only on the article page. http://buff.ly/17BZls1
Hello, 1. For your first issue Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .post_title { display: run-in!important; } 2.For your second issue Go to loop.php present in your theme directory and replace the current code Code: <?php the_excerpt(); ?> With code given below Code: <?php the_content(); ?> Sending image for refernce This will solve your issue.