Viewing 25 posts - 1 through 25 (of 25 total)
  • Author
    Posts
  • #935626

    Hello,
    I have set up a 3 columns line but it is not responsive and stays with 3 columns even after breakpoint…
    THank you.

    #935742

    Hey ADAGE,

    I couldn’t reproduce that on my end using Chrome, could you post a screenshot of the issue and in which browser we can reproduce it please?

    Best regards,
    Rikard

    #935767
    This reply has been marked as private.
    #935934

    Hi,

    Can you try to disable caching and css minification and check again?

    Best regards,
    Nikko

    #936003

    Tried this with no effect.

    #936021

    Hi,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    #936028

    Thank you.

    • This reply was modified 6 years, 7 months ago by Rikard.
    #936075

    Hi,

    Thanks for the screenshot. Please try the following in Quick CSS under Enfold->General Styling:

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

    Best regards,
    Rikard

    #936082

    No it don’t seem to work, but since you have an admin access, you could have checked it yourself…

    Also it seems to me Enfold should be natively responsive ; this is very strange I must use CSS customization to make Enfold responsive…

    #936282

    Hi,

    The columns are not responding correctly because the sections are outside the main container. We moved the map inside a grid row element and then added the following script in the functions.php file to fix the issue temporarily.

    function ava_custom_script_fix(){
    ?>
    <script>
    (function($){
    	function a1() {
    		var grid = $('body').children('.av-submenu-container, .avia-section, .av-layout-grid-container, .av-tab-section-container, #footer, #socket');
    		$(grid).appendTo('#wrap_all #main');
    	}
    
    	a1();
    	
    	function a2() {
    		var child = $('.avia-section, .av-layout-grid-container').find('.avia-section, .av-layout-grid-container, #footer, .av-submenu-container, #footer'),
    		parent = child.parents('.avia-section, .av-layout-grid-container');
    
    		child.insertAfter(parent);
    	}
    
    	a2();
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script_fix');

    Best regards,
    Ismael

    #936444

    Hello and thank you,
    In deed this solved the issue but caused a new one :
    Since your changes, the social feed disappeared. Please check page revisions in order to see it.
    Thank you.

    #936447

    It seems you just deleted it ; it’s ok now.
    Thank you.

    #936550

    Hi ADAGE,

    So is it working now? Or do you still need more help?

    Best regards,
    Victoria

    #936562

    Yes, thank you.

    #936581

    Hi ADAGE,

    Glad we could help :)

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1102998

    I’m currently experiencing this issue. I have two 1/2 columns inside a color section and 3 1/3 columns inside a color section. They are not responding to mobile and instead of going to 100% stacked they stay as 2 and 3 columns.

    #1103032

    Everything has been working fine.

    Today I have found that ALL but two of my client websites are NOT responsive to mobile! The columns are not responsive but the grid of posts is fine.

    Enfold 4.5.2 is fine
    Enfold 4.5.5 is fine
    Enfold 4.5.6 is the PROBLEM
    Enfold 4.5.7. still a PROBLEM

    What happened? Please help.

    #1103909

    hi guys,

    i have some similar problems since enfold 4.5.7. with your fixing script above the responsive purposes are fixed,

    BUT:

    some layoutbulider elements (f.e. avia-fullwidth-slider, flex-colum, …) are not inside the wrap_all div.
    this occours only in custom post types, which we made able to use layoutbuilder.

    please find a solution for that, we have to move many enfold versions back to keep alive :-)

    #1103948

    This also affects the ability to adjust the responsive mobile font size for headlines. Even if you have it set to a different size, it doesn’t work. I had to adjust it in CSS for now. However, this doesn’t all you to adjust individual entries which is what made the feature so good.

    #1104432

    Hi,

    @fulanoinc: Are you using a custom post type? You should add that in the builder’s list of supported post types using the “avf_alb_supported_post_types” filter. Example of the filter usage can be found in the following thread.

    // https://kriesi.at/support/topic/missing-adva-layout-builder-in-custom-post-types-after-updating-to-version-4-5-4/#post-1078672
    // https://kriesi.at/support/topic/menu-not-visible/#post-1097923

    You don’t need to add the script above.

    Best regards,
    Ismael

    #1104525

    Hi Ismael,

    I have always had my post types registered in the functions.php file. All my post types have been working very well for a while, until the release of Enfold 4.5.6 and Enfold 4.5.7. After this, the responsiveness of the custom post types are gone. However, the pages using the same layout are fine.

    Thanks,
    Leyden

    #1104530

    my problem is solved since i changed the filter

    from:
    add_filter(‘xxxxxxxxxx’, ‘avia_register_meta_boxes‘, 10, 1);
    to
    add_filter(‘xxxxxxxxxx’, ‘my_alb_supported_post_types‘, 10, 1);

    worx with the latest version.

    thanx a lot
    rene

    #1104815

    Hi,


    @fulanoinc
    : Did you use the “avf_alb_supported_post_types” filter? Please open a new thread with the necessary details so that we can inspect the issue.


    @isee
    : Thank you for the confirmation.

    Best regards,
    Ismael

    #1104890

    The “avf_alb_supported_post_types” filter has always been used to register my custom post types. I have been successfully using the theme with custom post types for a while now. This issue has only happened after upgrading to Enfold 4.5.6 and Enfold 4.5.7.

    I already have a new thread open: https://kriesi.at/support/topic/columns-not-responsive-in-4-5-6-and-4-5-7/#post-1104686

    Thanks

    #1105562

    Hi,


    @fulanoinc
    : Thank you for the update. Please continue on the next thread. We’ll close this one.

    Best regards,
    Ismael

Viewing 25 posts - 1 through 25 (of 25 total)
  • The topic ‘3 columns grid not responsive’ is closed to new replies.