• omen666

    (@omen666)


    Hi Guys, I am aware of the difference between posts and pages. I have setup a site where I want the front page to have 3 specific posts in the featured images.

    I have setup the rest of the site with pages and they are all in the menu. What i want now is to put posts in one of these pages, it is for a diary/blog of my nephews life in and out of hospital so need these to be posts so I can put the dates of when he was in and out. I only want posts on this page.

    Is there a way to do it?

    Happy to send the url of the site but dont want to publish it publicly

Viewing 10 replies - 1 through 10 (of 10 total)
  • Could this help?
    http://wordpress.org/support/topic/how-to-add-a-blog-template-for-customizr?replies=14
    To make it working good with newer customizr versions, just replace this
    <div class="row">
    with this

    <div class="<?php echo tc__f( 'tc_column_content_wrapper_classes' , 'row column-content-wrapper' ) ?>"

    Thread Starter omen666

    (@omen666)

    Hi d4z,

    I have no clue where to put tht code. I have a child theme that only contains this:

    /*
    Theme Name: Child Theme
    Version: 1.0
    Description: A child theme of Customizr
    Template: customizr
    */

    @import url(“../customizr/style.css”);

    In that link

    Save the code above in your child theme folder, as blog.php, than select it as the page template for the page you want to display your blog on.

    Hope this helps 🙂

    Thread Starter omen666

    (@omen666)

    Thanks d4z_c0nf, I have actually just got a plugin to work. My only issue now is the size of the font of the title of the post. I would like it smaller and not as overpowering

    http://mecp2duplicationuk.org.uk/brody/

    In your custom css or your child-theme style.css:

    .tpg-title-class h2 {
        font-size: 15px;
    }

    And for “overpowering” .. sorry don’t know what you mean 🙂

    Thread Starter omen666

    (@omen666)

    The font size too large

    Thread Starter omen666

    (@omen666)

    I put the above in my child theme style.css but doesnt work.

    /*
    Theme Name: Child Theme
    Version: 1.0
    Description: A child theme of Customizr
    Template: customizr
    */
    .tpg-title-class h2 {
    font-size: 15px;
    }
    @import url(“../customizr/style.css”);

    You mean that is bold?
    Then the rule above become:

    .tpg-title-class h2 {
        font-size: 15px;
        font-weight: normal;
    }

    p.s.
    your latest change is working, force refreshing of the page.

    Thread Starter omen666

    (@omen666)

    Thanks I done a cached refresh and that is perfect, once again thanks for your help.

    Glad you solved 🙂
    Good luck for your nephew.
    Could you mark this topic as solved?

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘Posts in Pages’ is closed to new replies.