Tagged: 

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #780720

    Ahoy,

    I’m using this plugin which I purchased from theme forest. http://preview.codecanyon.net/item/multipurpose-before-after-slider/full_screen_preview/5159016?_ga=1.212410900.1443368365.1492473979

    I’m having an issue with the plugin with the enfold theme. I already reached out the plugin developer and they said it is a issue with the enfold pagebuildler. Here is the issue.

    The plugin looks fine when it is full screen. When you minimize it though it does not adjust if it is in a column. I have created some demo pages to show the issue.

    Please advise how to resolve.

    #783326

    Hey mcraig77,

    Thank you for using Enfold.

    Please note that we don’t provide support for third party extensions as stated on our support policy but we’ll try to help as much as we can. Is it working properly if the slider is outside the tab section element?

    Best regards,
    Ismael

    #783656

    Hi Ismael,

    I already reached out to the plugin developer, yes it works fine outside the pagebuilder. Only when put in the pagebulder does it not work… It seems to have a conflict with the pagebuilder…. Did you see the sample I provided?

    #783806

    Hey!

    Yes, we understand that it’s not responsive but have you tried moving it outside the “Tab Section element”?

    Cheers!
    Ismael

    #783824

    Hi Ismael,

    Yes, I have and it works BUT I need it to be in this element to make things flow with my website. The text is not all showing (from the left side) in full either (i just noticed that)… see screenshot.

    #783881

    Hey!

    Try to set a maximum width to the tab section’s inner container.

    @media only screen and (max-width: 767px) {
        .av-layout-tab-inner {
            max-width: 600px;
        }
    }
    
    @media only screen and (max-width: 460px) {
        .av-layout-tab-inner {
            max-width: 400px;
        }
    }

    Best regards,
    Ismael

    #784147

    That seems to help with iphones but on my galaxy 6 device some of the text is still cut off. Screenshot attached

    #784223

    Hi,

    Just change the code to:

    @media only screen and (max-width: 482px) {
        .av-layout-tab-inner {
            max-width: 400px;
        }
    }
    

    P.S: I just changed the 461px by 482px.

    Best regards,
    John Torvik

    #784248

    Ahoy John,

    I changed that but things are still getting cut off on my phone.

    #785549

    Hi,

    For the galaxy 6 device, please add this code:

    @media screen 
      and (device-width: 360px) 
      and (device-height: 640px)
      and (-webkit-min-device-pixel-ratio : 4) 
      and (-webkit-device-pixel-ratio : 4)
      and (orientation: portrait) {
        .av-layout-tab-inner {
            max-width: 450px;
        }
    }

    Best regards,
    Ismael

    #785958

    Hello,

    I just tried that on my edge and it didn’t seem to change anything…

    #786158

    Hi!

    Are you removing the browser cache or hard refreshing the page before checking it?

    Regards,
    Ismael

    #786697

    Yup, as you can see it is still funky on my phone. See test browser in private

    #786928

    Hi,

    Please adjust the max-width value from 400px to 300px.

    @media only screen and (max-width: 460px) {
        .av-layout-tab-inner {
            max-width: 300px;
        }
    }

    Best regards,
    Ismael

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