Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #607223

    Hi,
    first of all, thank you for this awesome theme. It’s so flexible and looks amazing and easy to use.

    I have a minor problem though:

    On desktop the Partner/Logo Element works as expected. On mobile it packs the 4 colums in a 2×2 layout.
    When I now have e.g. 6 logos in it, the website content moves up and down from 2×2 to 1×2.

    Is it possible to change the responsive layout for this element, so that it only shows 2 logos in 1 row at a time?
    That would get rid of the problem described above and in my opinion look even better.

    Cheers
    sebastian

    #607635

    Hey Sebastian!

    I couldn’t find any partner/logo element on the link you have provided. Where is it?

    Regards,
    Andy

    #607639

    Hey Andy,

    strange. It looks like this:
    Logo Element

    #608257

    Hi!

    screenshot does not show up, please check. Can you provide us a mockup showing the results you want to achieve? this would help us a lot.

    Best regards,
    Andy

    #608293

    Hi,
    okay.
    On desktop it looks like this:
    https://drive.google.com/open?id=0B-kmR9cGyhVyaHFLM1doWHp4bmc

    On Mobile it looks like this:
    https://drive.google.com/open?id=0B-kmR9cGyhVyNUNIaTlnTWlqcUk

    And I wanted it on Mobile to look like this:
    https://drive.google.com/open?id=0B-kmR9cGyhVyUTJjWUVQOWZDTzg

    Even if the number of columns increases due to more logos
    It should always show only 2 logos on mobile in 1 row.
    Does this help?
    Thanks

    #609282

    Hey!

    Looks like you fixed it by setting the column option to 3. Is that right? If you really want a two-column slider, please create a test page so that we can inspect the setup.

    Best regards,
    Ismael

    #609410

    Hi Ismael,

    no it is not fixed yet.
    On desktop I need more than 3 columns in the future. On mobile it should always stay at 2 columns in 1 row.
    So even if I have 8 columns setup in the layout editor for the desktop site, it should only show 2 columns in 1 row on mobile.

    Hope that explains it better.

    What do you mean with a test page. Do you need a WP Login for my site?

    Cheers

    #610602

    Hey!

    A test or temporary page with the logo slider so that we can inspect the issue. We can’t reproduce it on the current page. A workaround is to create two logo slider with different settings Toggle the display of these elements by using css media queries: http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/

    Best regards,
    Ismael

    #611050

    Hi Ismael,

    here is the test page:

    I provided you with a login to my wp backend.

    Thanks

    #611726

    Hey!

    We can’t modify the test page because the user is not set to admin. Please give us full access to the site. Did you try the suggestion above?
    https://kriesi.at/support/topic/partner-logo-element-moves-website-up-and-down-on-mobile/#post-610602 http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/

    Best regards,
    Ismael

    #611751

    sorry, set to Admin now…

    I didn’t try the workaround yet.

    Thanks
    Sebastian

    #613462

    Hi!

    The suggested workaround is the only solution here because you can’t set a 4 column slider to 2 columns on mobile. You have to create two logo sliders with different column settings then toggle their display using css media queries.

    Best regards,
    Ismael

    #613804

    Hey Ismael,

    Thanks.
    I did the workaround and it works well.
    Only on a small mobile scree like the iPhone there is a huge gap between the text and the Logo Element. I tried to fiddle around a little bit with padding and margin, but it didn’t change anything.
    Any suggestions?

    #613828

    Hi!

    Please try the css below

    
    #top .avia-smallarrow-slider .slide-image, #top .avia-logo-element-container img {
        margin: 0!important;
        display: inline-block!important;
    }
    
    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .slide-entry {
        width: auto!important;
        margin-left: 20px!important;
    }}

    Regards,
    Vinay

    #613964

    Hey Vinay,

    sorry thats not working on my main site.

    Anything else?

    Cheers

    #615666

    Hey!

    It’s because of the 1/5 columns. Edit those columns and add the “desktop-only” class attribute.

    Cheers!
    Ismael

    #737796

    Hi,

    so I updated the theme and also put a new logo in there and it now shows 2 rows of logos (one desktop row and one mobile row) on both desktop and mobile. The css is still there. Looks very clonky now. What to do?

    #738950

    Hey, is there anything I can do to avoid both Partner/Logo Elements are shown on mobile and desktop at the same time?

    PLEASE HELP

    #739648

    Hi,

    yes you can do this: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then use a code inside of Quick CSS field like this for example:

    For desktop:

    .your-custom-class {
    display: none;
    }

    For mobile only add media queries:

    @media only screen 
      and (max-width: 736px) {
    .your-custom-class {
    display: none;
    }}

    Best regards,
    Andy

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