Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1334043

    Dear support,
    after the last update i get a fatal error. I published a page where i can reproduce this behavior.
    in a 4-column-logo setup I added a jpg. with just one pixel as a logo to avoid the logos to get bigger in mobil view. This happens when instead of 4 columns onbly 2 or 3 Logos are shown. This worked out in the past. But now there is a fatal-php-error. When i add one logo with one-pixel-image there is no error, after i add a second one the error shows up.
    Do you understand my problem?

    #1334147

    Hey dondela,

    Thank you for the inquiry.

    We are not yet sure why the error occurs but it might be due to the image name. Temporarily, you can remove the 1 pixel images and use this css code to limit the width of the slider entries on mobile view.

    @media only screen and (max-width: 479px) {
        .responsive #top #wrap_all .avia-logo-element-container .slide-entry {
            width: 25%!important;
        }
    }

    Best regards,
    Ismael

    #1334155

    Hey Ismael,
    thanks for your help.

    I wrote the css in the quick-css-section. But the last 2 Logos are still bigger than the other on mobile-view. How can i manage to have the same size even when there are less than 4 logos in a row?

    Regards dondela

    #1334171

    Hi dondela,

    Can you try adding flex-basis to Ismael’s code, the code should look like this:

    @media only screen and (max-width: 479px) {
        .responsive #top #wrap_all .avia-logo-element-container .slide-entry {
            width: 25%!important;
            flex-basis: 25%;
        }
    }

    Best regards,
    Nikko

    #1334176

    Hey Nikko,

    i tried with flex-basis – but no effect on mobil.
    But i can reproduce the error if i add 2 empty logos the php error shows up.

    #1334201

    Hi dondela,

    The two logos at the bottom now shows up in the same size as other logos on my phone (screenshot link in private content).
    As for the error, I suggest not adding empty logos instead we can help with CSS if any adjustments are needed.

    Best regards,
    Nikko

    #1334204

    Hi Nikko,
    you are right, it works now!

    Thanks for your help, great support as always :-)

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘logo slider error after enfold update’ is closed to new replies.