• I’m trying to remove the smaller ”archive” looking posts at the bottom of the main page of the MAGAZEEN wordpress theme by Smashing Magazine. I know how to change how many posts are displayed but not sure how to remove them completely and still allow for the pagenav to kick in – or have the Infinite Scroll plugin to kick in.

    if anyone can help me, that would be wonderful.
    https://www.blog.noahdamaren.com

    thank you very much.

    -nd

Viewing 3 replies - 1 through 3 (of 3 total)
  • In your style.css file find

    .single {
        float: left;
        height: auto;
        margin: 0 15px 20px 0;
        width: 275px;
    }

    and add a rule
    display:none;

    Hope this helps

    Thread Starter ndamaren

    (@ndamaren)

    this removes them yes, thank you. However, no more posts are being displayed. I can change the number of posts to be displayed to 99999, but id rather not have the user have to load 9999 posts all at once, so now im wanting to use the infinite scroll plugin so i can load 10 posts at a time, or, even use pagenav (if i chose to not use the infinite scroll plugin.)

    thank you

    -nd

    Thread Starter ndamaren

    (@ndamaren)

    also, i’m not sure what is what – i need to also select the:

    1. Navigation Links CSS Selector (The selector of the navigation div (the one that includes the next and previous links).)

    2.Previous posts CSS Selector (The selector of the previous posts (next page) A tag.
    Examples:
    div.navigation a:first
    div.navigation a:contains(Previous)

    3. Content CSS Selector (The selector of the content div on the main page.)

    4. Post CSS Selector (The selector of the post block. Examples: #content > * #content div.post div.primary div.entry)

    I need these 4 things to also enable the infinite scroll plugin to work.

    Thanks again

    -nd

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Magazeen Theme Main Page Posts….’ is closed to new replies.