Is it possible to control the display of sections on different screen sizes?
I have a page that looks good on 15" laptops, but larger resolutions cause the next section to appear on the first screen.
Is there a way to show the next section only on the next screen/page, using JavaScript or CSS if necessary?
I want the next section (starting with the title "Here Are Just Some of the Reasons Entrepreneurs Love PlanBuildr") to only be visible on scroll for larger screens - not immediately visible below the fold.
We can achieve this with page-break-after:always;
for PDF pages, but how can we implement this on desktop browsers?
(media is not "print")