Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1065400

    Hi There,

    Something is not going well on the Tophoveniers mobile website (https://www.tophoveniers.nl/). See attached picture (however this is for all pages with text and photo next to it). The video is also not visible on the home page and gives a notification.
    With news, there are no images on the mobile website.
    Can you help me out with this?

    Regards, Jeroen

    https://www.dropbox.com/s/rha45rwg45kmnwc/Schermafbeelding%202019-02-11%20om%2011.16.53.png?dl=0

    #1065792

    Hi Jeroen,

    Thanks for the login details and screenshot, I’m not sure exactly why that is happening, but you can try this CSS to see if you have any luck with it:

    @media only screen and (max-width: 767px) {
    .av_one_half {
        margin-left: 0;
        width: 100%;
    }
    }

    The video is working fine on my end.

    Best regards,
    Rikard

    #1065880

    Hi Rikard,

    thanks… unfortunately this CSS dit not work.
    Any other suggestions?

    Best regards,
    Jeroen

    #1066288

    Hi Jeroen,

    Thanks for the update. Where exactly did you add it? You can try this instead to see if it works better:

    @media only screen and (max-width: 767px) {
    .av_one_half {
        margin-left: 0 !important;
        width: 100% !important;
    }
    }

    Best regards,
    Rikard

    #1067000

    Thnx Rikard, this CSS works fine.

    I’ve two other questions about the mobile version… The video is also not visible on the home page and gives a notification (see dropbox attachment).
    https://www.dropbox.com/s/lwycuaye16p5k7j/Tophoveniers%20mobiel.jpg?dl=0

    At news, there are no images on the mobile website.

    Any suggestions for these issues?

    Regards, Jeroen

    #1067497

    Hi Jeroen,

    Autoplay videos are disabled on mobile devices, that is why you get that notification. You can set a fallback image for the video in the element options.

    Please try this for the footer problem:

    @media only screen and (max-width: 767px) {
    #footer .av_one_fourth {
        margin-left: 0 !important;
        width: 100% !important;
    }
    }

    Best regards,
    Rikard

    #1068987

    Oke thnx Rikard!

    ‘At news, there are no images on the mobile website.’ I mean this page https://www.tophoveniers.nl/nieuws/ (the mobile version)

    Thnx Rikard…

    Grtz Jeroen

    #1069310

    Hi Jeroen,

    Thanks for the clarification, please try this in Quick CSS to show the images on mobile as well:

    @media only screen and (max-width: 767px) {
    .responsive .template-blog .blog-meta {
        display: block !important;
    }
    }

    Best regards,
    Rikard

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