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%;
}
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
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!