• marcussatherstrom

    (@marcussatherstrom)


    Hi,

    I want to create more blog feeds that looks like this page blogg.mammasanningar.se/marcus , but when i create a new one it does not look the same (with the big featured post first)

    How can I make this work?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Tom

    (@edge22)

    Hi there,

    The featured post option is inside our Pro version.

    Without the Pro version, you could do something like this:

    #wpsp-13918 > article:first-child {
        width: 75%;
    }
    
    #wpsp-13918 > article:nth-child(2) {
        width: 25%;
    }
    Thread Starter marcussatherstrom

    (@marcussatherstrom)

    Thanks! Works great!

    Another questions I asked over at GP support but they told me to ask it here.

    How do I get like a box around all “WP show post” posts? Possible with CSS?

    /Marcus

    Thread Starter marcussatherstrom

    (@marcussatherstrom)

    It does not look good with the code in mobile… Maybe just this code for desktop? Can I do this?

    Leo

    (@leohsiang)

    This should make it so it’s desktop only:

    @media (min-width: 769px) {
        #wpsp-13918 > article:first-child {
            width: 75%;
        }
        #wpsp-13918 > article:nth-child(2) {
            width: 25%;
        }
    }

    More info here: https://docs.generatepress.com/article/responsive-display/

    As for the border, any chance you can open a new topic so others can find the solution using the title of the topic as well?

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Featured post’ is closed to new replies.