I would like to add a text box and an image on the blog page of my site such that I can make it a little more unique. Is this possible? Adding text and image on to the page I have designated as the blog page does not work. My assumption is that this is because the custom template used for this page doesn't accept text. Here is my blog homepage for reference http://homeloangiant.com/learning/ Thank you, Paul
Hello, Go to the blog.php file present in your Theme directory and Paste the following code code given below in that file as shown in the image given below. Code: <div class="blog_page"> <p class="blog_content"> Enter your Text here. </br><img class="blog_imgh" src="Enter you image URL address here"/></br> Enter your remaining Text here. </p> </div> Code: http://content.screencast.com/users/Piyush_singh/folders/Jing/media/49ea1d7d-0a83-445e-9fe7-4229609088a9/2013-05-20_1333.png Now, Paste the following code in your Custom CSS (Appearance -> Theme Options -> Styling Options -> Custom CSS) Code: .blog_page { margin-top: 20px; margin-bottom: 20px; } img.blog_imgh { padding-top: 10px; padding-bottom: 10px; } This will solve your issue.