Hey there,
is it possible to change the number of blogposts in blog grid view?
What i am aiming at:
To let show 10 blogposts on mobile view
and 28 on desktop version, so the whole site.
Can you please explain where and maybe how i can set it?
Hey tobego!
You can refer to this post – http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/ and choose to display different elements on mobile and desktop
Regards,
Yigit
Can you please assist me Yigit?
Hi!
Sure. Please edit your blog page and two blog posts element and then turn on custom CSS field for ALB elements – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/. Edit one of your element and choose to display 10 posts and give it a custom CSS class “only-mo” and then edit other element and choose to display all posts and give it a class “only-dt” then add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 990px) {
.only-desktop { display: none !important; }}
@media only screen and (min-width: 990px) {
.only-mobile { display: none !important; }}
Regards,
Yigit