Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #589301

    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?

    #589306

    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

    #589705

    Can you please assist me Yigit?

    #589714

    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

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.