How to add posts in pages in Imbalance 2

  • Unknown's avatar

    hi, how can I add posts into pages in Imbalance 2?

    Moreover, is it possible to move all the posts more left in the page?

    and 3rd question, how can I remove all the author, date etc info from both pages and posts?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    You can organize and display posts by assigning categories to them and the placing the categories into a custom menu. See this support document on Category Pages for more information.

    2. The following will move the content on the single post pages to the left and widen the content area.

    .single .entry-content {
        margin-left: 50px;
        width: 910px;
    }

    3. To remove the author, date and category, add the following to your custom CSS.

    .entry-meta {
        display: none;
    }

    If you also wish to remove the previous/next navigation link from the posts, add the following.

    #nav-above {
        display: none;
    }
  • Unknown's avatar

    many thanks…two more questions then,

    1) how can I also move the title left on the page

    2) in tha caption of each one of my images there is a dash in the beginning…any idea why is that and how can I remove it?

  • Unknown's avatar

    1. Oops, I had that, but forgot to copy/paste in above. Add the following which will align the post title on single post pages with the left edge of the images.

    .single .post_title h1 {
        margin-left: 50px;
    }

    2. The following will get rid of the dash and move the caption text over to align with the left edge of the image.

    .single .wp-caption .wp-caption-text:before {
        content: "";
    }
    
    .single .wp-caption .wp-caption-text {
        padding-left: 8px;
    }
  • Unknown's avatar

    thanks again, another 2 questions (let me know if it is better to create a new post)
    1) how can I make bold the title

    2) is it possible to move the next/previous button above the main post title?

  • Unknown's avatar

    1. Add this to make the site title bold.

    .wf-active #site-title a {
        font-weight: bold;
    }

    If you are talking about the post titles on the main page, then add this instead.

    .box h1 a {
        color: #333333;
        font-weight: bold;
    }

    If you also want the post titles bold on the single post pages (after clicking a post title on the main page), then add this.

    .wf-active .post_title h1, .wf-active .post_title h2 {
        font-weight: bold;
    }

    2. To move the next/previous links above the post titles on the single post pages, add the following.

    .single .post_title {
        position: relative;
    }
    
    #nav-above {
        position: absolute;
        top: 0;
        text-align: left;
        padding-left: 65px;
    }
    
    .single .entry-title {
        margin-top: 30px;
    }
  • Unknown's avatar

    thanks, about the next/previous choice, is it possible to be in the same order as in the categories, or they do align based on the date i published them?

  • Unknown's avatar

    By default, posts will be in reverse chronological order (newest at top) if that is what you mean. There is no way to change that other than to publish the posts in the order you wish them to appear.

  • Unknown's avatar
  • The topic ‘How to add posts in pages in Imbalance 2’ is closed to new replies.