Rearrange Portfolio and Blog on Front page

Home Forums Automattic Mood Rearrange Portfolio and Blog on Front page

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #164545 Resolve

    Ann MarJory
    Member

    I’m wondering if I’m able to switch the order that the Projects and Blog posts appear on the front page? So that the Projects gallery is displayed first, above blog posts.

    Thanks!

    The blog I need help with is allaboutanns.com
    #164548

    Kathryn P.
    Happiness Engineer

    Sure – give this a try in your Customizer‘s CSS panel:

    /* Move projects above blog on the front page */
    .home .site-main {
      display: flex;
      flex-direction: column;
    }
    .home .portfolio {
      order: 1;
    }
    .home .journal {
      order: 2;
    }
    .home .about {
      order: 3;
    }
    .home .social {
      order: 4;
    }

    Let me know how it goes.

    Also just a heads-up that since your site has a Premium plan, you’re entitled to live-chat and email support, accessible here:

    https://wordpress.com/help/contact

    You’re welcome to still post in these forums, but those other support avenues may be faster, and you’ll always get a staff reply.

    #164555

    Ann MarJory
    Member

    Worked great! And thanks for the heads up, I didn’t realize! I’ll definitely take advantage of that in the future.

    #164556

    Kathryn P.
    Happiness Engineer

    Glad that did the trick!

    I’ll mark this thread as resolved but feel free to start a new one – or contact us via live chat – if you need help with anything else. :)

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.