Hello - How do I figure out where the posts are going to so I can have them populate into the blog tab in the navigation bar? Here is the link to my site: http://ginafresquez.com/wordpress/ I'm also wondering if it is possible to add a static header graphic to the pages that are not the homepage? Thank you!
Hello, 1. Follow the steps given below. a. Create your blog page from the Pages > Add New panel by selecting the blog page template from the page attributes section. b. Create your posts from the Posts > Add New panel. All your blog post will automatically show on blog page. 2. If you want to put color in the background of header on all page instead of home page then paste the following code in your Custom CSS (Appearance -> Theme Options -> Styling Options -> Custom CSS) Code: .header_container.not_home { background: red; } In place of "red" you can put your color or color code. or If you want to show image in the background of header on all page instead of home page then paste the following code in your Custom CSS (Appearance -> Theme Options -> Styling Options -> Custom CSS) Code: .header_container.not_home { background-image: url(Enter the URL address of your background image); } This will solve your issue.