Hi
Is it possible to limit “Blog pages to show at most” on the Reading Settings just for mobile devices but keep it higher for desktops?
Thanks.
Hi
Is it possible to limit “Blog pages to show at most” on the Reading Settings just for mobile devices but keep it higher for desktops?
Thanks.
Hi @grass22,
Thank you for your question.
You can try achieving this by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.
Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS
@media (max-width: 992px){
#main article{
display:none;
}
#main > article:first-child{
display:block;
}
}
Best Regards,
Movin
That works!
thank you for your support.
You are most welcome here