Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #742634

    Hi there,

    I use the fullscreen slider, and have made it a little bit shorter, the way you explained it on the forum, find below.
    But now it looks very weird on the mobile phone, it is not responsive anymore. Is there a solution for this? Thanx, Annelies

    @media only screen and (max-width: 480px) {
    .avia-fullscreen-slider .avia-slideshow>ul>li {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    }
    }

    @media only screen and (min-width: 1200px) {
    .avia-slideshow-inner {
    height: 440px !important;
    }
    .avia-slideshow {
    max-height: 440px !important;
    }
    }

    #742791

    Hey AnneliesUL,

    Yes, there should be a solution to that. Would you give us a link to the page with the fullscreen slider? so we can check it further.

    Best regards,
    Nikko

    #742841

    Hey thanx for fast reaction!

    #743210

    Hi,

    Try to replace this code:

    @media only screen and (max-width: 480px) {
    .avia-fullscreen-slider .avia-slideshow>ul>li {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    }
    }

    to:

    @media only screen and (max-width: 480px) {
      .avia-fullscreen-slider .avia-slideshow>ul>li {
        background-size: auto 100%;
        background-position: center center !important;
        background-repeat: no-repeat;
      }
    }

    Hope this helps :)

    Cheers!
    Nikko

    #743316

    Thanks Nikko, but that doesn’t work either. Now the picture is full screen, instead 90% height on the computer. And on the mobile it is still a weird foto now. It shows the whole picture, but then made fit on a mobile screen :), so everything is in different proportions

    #743605

    Hi,

    Can you post a screenshot on how it looks on your mobile phone when the code I gave is used? you can upload it on http://imgur.com/ and post the link here. Basically what I suggested above was replacing this part of the code:
    background-size: 100% 100%;
    to this one:
    background-size: auto 100%;
    this means the background’s width will be auto and height to 100%, by using this code it would make sure that the background won’t be stretch though some part of it won’t be seen. And adding this code:
    background-position: center center !important;
    Which basically says to use the center as the base instead of top and left part of the background image (which is the default), so by adding the code I gave would result in the woman with curly hair to show as background image, though the other person won’t be seen.

    Cheers!
    Nikko

    #743637

    Sorry, it was my mistake. Because now it is working! :)
    But the weird thing is, the text above changed from white to black. (Im a digi-nerd… )
    Do you know which button I must have touched?

    #743638

    only on the mobile. on the computer the letters are still white..

    #743665

    Hey,

    That’s weird, I’d like to check the page again however when I opened it, it shows a 404 page:

    Nothing Found
    Sorry, the post you are looking for is not available. Maybe you want to perform a search?

    Regards,
    Nikko

    #744128

    Hi Nikko,

    Thank you for your help! It is working now. The letters are white again too :)

    #744143

    Hi,

    I tried it but I still couldn’t see it, please refer to the screenshot link below.

    Regards,
    Nikko

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