Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #715977

    Hi !

    I’ve set the columns in post slider to 3 columns – that looks fine on the desktop!

    Regarding to this the post slider shows 3 articles stacked on top of each other in responsive / mobile mode.

    How can I reduce this so he only shows 1 article at the same time and then scrolls to the next one?

    Here I’ve found a similar solution here

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .slide-entry { width: 100%; }}

    But adapting this for example to

    @media only screen and (max-heigth: 300px) {
    .responsive #top #wrap_all .slide-entry { width: 100%; }}

    doesn’t do the trick.

    I’m sure you have the right css trick at hand – like always ;-)

    Thanks
    Tom

    • This topic was modified 7 years, 12 months ago by ideenstart. Reason: just cosmetics ;-)
    #716757

    Haven’t found a solution for this myself yet…

    So I really need your help here !

    Thanks
    Tom

    #717296

    Hi,

    I tried checking on your the link you have given but it only returns:

    This site can’t be reached

    As for How can I reduce this so he only shows 1 article at the same time and then scrolls to the next one, it’s not possible just by using css to show 1 article at a time (well it’s possible but the 2 others will be hidden), what I suggest as a solution is to create 2 post sliders, 1 for desktop and tablet (3 columns) and 1 for mobile (1 column), for this to be possible you need to create another post slider for mobile (same setup only 1 column) then enable Custom Css Class ( instructions here: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ ) then for the 3 column post slider add this class show-desktop and this class show-mobile on 1 column post slider. Finally add this code to Quick CSS:

    .show-mobile {
      display: none !important;
    }
    
    @media only screen and (max-width:767px) {
      .show-mobile {
        display: block !important;
      }
    
      .show-desktop {
        display: none !important;
      }
    }

    Let us know if it works, if it doesn’t we would like to request for a temporary admin access so we can check the backend.

    Best regards,
    Nikko

    #717712

    Hi Nikko !

    Perfect solution in 1st try :-)
    You can mark this as solved!

    Thanks a lot !
    Tom

    OOPS: I totally forgot that this site is running on an internal server – that’s why you couldn’t connect to it ;-)

    #718682

    Hi,

    glad we could help. Let us know in a new ticket if you have some more questions related to the theme. We are happy to assist you.

    Best regards,
    Andy

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Change number of posts/rows displayed in post slider on mobile version’ is closed to new replies.