Tagged: columns, responsive
-
AuthorPosts
-
March 31, 2018 at 9:26 pm #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.April 1, 2018 at 9:10 am #935742Hey 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,
RikardApril 1, 2018 at 2:36 pm #935767This reply has been marked as private.April 2, 2018 at 7:43 am #935934Hi,
Can you try to disable caching and css minification and check again?
Best regards,
NikkoApril 2, 2018 at 11:23 am #936003Tried this with no effect.
April 2, 2018 at 12:22 pm #936021Hi,
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- 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 ). - Click ” Submit “.
- 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,
NikkoApril 2, 2018 at 12:27 pm #936028Thank you.
- This reply was modified 6 years, 7 months ago by Rikard.
April 2, 2018 at 1:36 pm #936075Hi,
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,
RikardApril 2, 2018 at 1:44 pm #936082No 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…
April 3, 2018 at 4:33 am #936282Hi,
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,
IsmaelApril 3, 2018 at 10:41 am #936444Hello 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.April 3, 2018 at 10:46 am #936447It seems you just deleted it ; it’s ok now.
Thank you.April 3, 2018 at 1:53 pm #936550Hi ADAGE,
So is it working now? Or do you still need more help?
Best regards,
VictoriaApril 3, 2018 at 2:06 pm #936562Yes, thank you.
April 3, 2018 at 2:30 pm #936581Hi ADAGE,
Glad we could help :)
If you need further assistance please let us know.
Best regards,
VictoriaMay 21, 2019 at 6:30 pm #1102998I’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.
May 21, 2019 at 6:56 pm #1103032Everything 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 PROBLEMWhat happened? Please help.
May 24, 2019 at 12:14 pm #1103909hi 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 :-)
May 24, 2019 at 4:34 pm #1103948This 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.
May 27, 2019 at 7:02 am #1104432Hi,
@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-1097923You don’t need to add the script above.
Best regards,
IsmaelMay 27, 2019 at 3:00 pm #1104525Hi 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,
LeydenMay 27, 2019 at 3:22 pm #1104530my 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
reneMay 28, 2019 at 1:15 pm #1104815Hi,
@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,
IsmaelMay 28, 2019 at 4:09 pm #1104890The “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
May 31, 2019 at 4:23 am #1105562Hi,
@fulanoinc : Thank you for the update. Please continue on the next thread. We’ll close this one.Best regards,
Ismael -
AuthorPosts
- The topic ‘3 columns grid not responsive’ is closed to new replies.