Blog Page / Posts and Header on pages other than home

Discussion in 'ButterBelly WordPress Theme' started by chassieb, Dec 17, 2013.

  1. chassieb

    chassieb New Member

    Joined:
    Dec 17, 2013
    Messages:
    26
    Likes Received:
    0
    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!
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    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.
     

Share This Page