-
AuthorSearch Results
-
March 29, 2024 at 7:06 pm #1438713
Topic: Parallax logo background color shows in rasterrow background
in forum Enfoldwacky1976
ParticipantHi!
I switched the Parallax Logo Area Color to red an now there is a red background at the top of the rasterrow “About us”, which I can’t get rid of.
Could you please tell me where it comes from. :-)
THX
ChristophMarch 29, 2024 at 6:16 pm #1438705In reply to: not visible on mobile
Hi Franz,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 767px) { .responsive #top .avia-post-nav { display: block; } }Best regards,
RikardMarch 29, 2024 at 5:20 pm #1438703In reply to: Bug in last row of table
Hi,
The function above can’t be applied to certain sections, it is applied to the whole page for it to work, but I think that you can choose which pages to apply it to, so if you have a page that doesn’t need it it all we could disable it. As this function seems to help for most of your site, as I understand, it sounds like just a couple of areas that you want to adjust.
So for example on your /iscrizione-master/ page you wanted to change this:

So I found that if we use css media queries for 1024px it seems that they will work, that is when the page is really 425px the site and css thinks it is 1024px, but above 1024px the css seems to work correctly.
So try adding this custom class to this color section that you don’t want to show on mobile screens: hide-on-small and then create a new color section with the changes per your screenshot above to show on the mobile screens with the custom class: hide-on-large and then add this css:@media only screen and (max-width: 1025px) { #top .hide-on-small { display: none; } } @media only screen and (min-width: 1026px) { #top .hide-on-large { display: none; } }I believe that this will work, and if it does then you can repeat this for your other color sections using the same classes accoss your site.
Best regards,
MikeMarch 29, 2024 at 12:06 pm #1438681In reply to: Change background color of Horizontal Gallery
Hi,
Great, I’m glad that we could help. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardMarch 29, 2024 at 11:56 am #1438680In reply to: Bug in last row of table
Hello mike,
forget about my previous message, it is a wrong question unfortunately.In your opinion, instead of using a general mobile rule applied to the entire site as now, wouldn’t it be possible to use different classes for mobile viewing applied to each color section? In my design I build the page by inserting all the components in a sequence of color sections, I find it a very rational and convenient way. So in my case, by applying the class to each color section, I could obtain different specific behaviors for each type of graphic configuration of the color section.
Or could I make two versions of the same page and activate one page for desktop view and the other for mobile view?
Finally, in the hypothesis of completely reviewing the layout from a mobile first perspective, would it be appropriate to narrow the width of the desktop screen, leaving two areas on the right and left empty? In this case, could they be filled with some canvas or texture to make them less anonymous?
Thanks for helping
AndrewMarch 29, 2024 at 11:53 am #1438679In reply to: Bug in last row of table
Thanks Mike….I understand.
In your opinion, wouldn’t it be possible to override your general mobile behavior and create some exceptions that override the actual visualization?
Or could I make two versions of the same page and activate one page for desktop view and the other for mobile view?
Finally, in the hypothesis of completely reviewing the layout from a mobile first perspective, would it be appropriate to narrow the width of the desktop screen, leaving two areas on the right and left empty? In this case, could they be filled with some canvas or texture to make them less anonymous?A thousand thanks
AndrewMarch 29, 2024 at 11:36 am #1438677In reply to: Bug in last row of table
Hi,
Unfortunately the function above doesn’t allow the media queries to work so I can’t add css to make this change only for mobile, I recommend changing your page layout to suit.
You could try creating a second set of elements and use the element visibility options to hide the desktop version and show your new mobile version, but I don’t think this will work because the element visibility options use the same css media queries to work.
So your best option may be to design your page layout with the mobile view in mind and show it the same way for desktop, since above you wrote that 70% of user access is via mobile.Best regards,
MikeMarch 29, 2024 at 12:40 am #1438573Hello Mike, thank you very much for your answer, unfortunately not everything works as expected, here are the results:
Point 1
Desktop: Menu sub-items from the normal menu and mega menu are not visible and therefore no navigation is possible.
iPAD Landscape: Mega menu not visible.
Display of the normal menu incorrect and unreliable: When accessing the website, the submenu items are not visible.
Only after selecting various menu items several times and updating the website are the submenu items sometimes displayed
and then not displayed the next time.iPAD Portrait (burger menu): Display and navigation work perfectly
Handy Portrait (burger menu): Display and navigation work perfectly
Handy Landscape (burger menu): Display and navigation works perfectlyPoint 2
Desktop: The page navigation menu works on these pages, but no access to the pages via the menu as already mentioned in point 1
iPAD Landscape/Portrait and Handy Landscape/Portrait: works perfectlyPoint 3 works perfectly
I would be grateful if you could help me to solve the remaining problems under point 1.
Many thanks and best regards
Bruno-
This reply was modified 2 years ago by
brunobuercher.
March 28, 2024 at 8:03 pm #1438562In reply to: Column Element Visability not completely working
Hey Blaise,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 767px) { .page-id-110914 #after_section_1 .content { padding-top: 0; padding-bottom: 0; } }Best regards,
RikardMarch 28, 2024 at 7:57 pm #1438561In reply to: symbols and some pictures are gone
Hi,
Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardMarch 28, 2024 at 4:53 pm #1438556In reply to: Bug in last row of table
Hi,
Thanks for the feedback I think I understand better now, basically you want to disable all of the mobile styles, which may make your site hard to read on mobile devices because all of the elements will be very small. Typically this would be a very big job to overwrite all of the mobile css, but I found a solution that wotks on my demo site, notice in this screenshot that the elements display like on a desktop just smaller:

Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor, or if you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:

then add this code and save.function my_custom_viewport_meta( $meta_viewport ) { return '<meta name="viewport" content="width=1024">'; } add_filter( 'avf_header_meta_viewport', 'my_custom_viewport_meta' );After applying please clear your browser cache and check.
Best regards,
MikeHi Rikard,
Thanks! I now see what you mean. The issue happens only on my MacBook laptop since it has a 14-inch monitor but not on my 27-inch iMac monitor, so if you could please tell me how to change the settings to fix that, I would appreciate it! That is, I want to ensure that the worded menu heading also appears on my MacBook laptop.
Regards,
Ramon
March 28, 2024 at 11:03 am #1438540In reply to: Bug in last row of table
Sorry Mike,
I apologize, in my response I think I sent you in the wrong direction.
I want to get a result similar to the following screenshots.
https://app.box.com/s/wy8isg2s7c6gs58yh3a2i8aluoqu5v3c
My goal is to condense all the columns in one row, as if the desktop view was activated on the smartphone browser.
Last example in the following screenshot I want to see on mobile the whole table, not only 2 – 3 columns
https://app.box.com/s/0fz4zksplt2efl66cj2tzsn29tfayu9uThanks again for your support
AndreaMarch 28, 2024 at 9:01 am #1438526In reply to: Header and slider not responsive
Hi,
1.) We recommend increasing the font size slightly from the default of 14px. Perhaps 16px or 18px would be ideal, but the choice depends on your preference.
2.) Would you mind providing a screenshot? You can use platforms like Savvyify, Imgur or Dropbox.
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelMarch 28, 2024 at 8:11 am #1438523In reply to: Responsive
Hey Renard,
Thank you for the inquiry.
You can add this css code to adjust the size of the tabs and make sure they align properly on smaller screens:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #top .av-pill-tabs .av-section-tab-title { margin-right: 10px; padding: 0 !important; } .av-pill-tabs .av-inner-tab-title { color: #FFFFFF; font-size: 0.9em; margin-bottom: 0px !important; line-height: .5em; padding: 8px !important; } }Best regards,
IsmaelMarch 28, 2024 at 7:53 am #1438518Hi,
On my iPhone the video has NO SOUND AT ALL!
It’s because the video is muted. You can adjust this in the Video element’s Content > Player Settings toggle. Please note that when autoplay is enabled, the theme will automatically mute the video because unmuted autoplay is not allowed (link below). If you prefer your video to remain unmuted, you’ll need to disable the autoplay option and let the users manually play it
Chrome’s autoplay policies are simple:
Muted autoplay is always allowed.
Autoplay with sound is allowed if:
The user has interacted with the domain (click, tap, etc.).
On desktop, the user’s Media Engagement Index threshold has been crossed, meaning the user has previously played video with sound.Best regards,
IsmaelMarch 28, 2024 at 7:44 am #1438516In reply to: Full Width Easy Slider Link Button
Hey woogie07,
Thank you for the inquiry.
You can add this css code to adjust the style of the slider button:
#top .avia-slideshow-button { border-radius: 3px; text-transform: uppercase; padding: 15px 16px; display: inline-block; margin-top: 20px; text-decoration: none; font-weight: bold; font-size: 30px; }Best regards,
IsmaelMarch 28, 2024 at 3:14 am #1438509Hi Mike,
Many thanks for the quick response. I added the snippset and can report partial success.1. It works with normal menus, but I would like to create a mega menu under the menu item “Unsere Birmas”. Unfortunately, this doesn’t work; the mega menu is not displayed on the desktop and on iPAD in landscape mode. It is just a white rectangle without submenu items visible. As mentioned above, if I use the normal menu instead of the mega menu, it works.”
2. For sidebar pages with the navigation menu widget, the page navigation menu is only displayed correctly on the mobile phone and on the iPAD in portrait mode. In landscape mode, the submenu items are missing on the desktop and iPAD.
I added in the WP Code plugin under Intelligent Conditional Logiccode as an example for the page https://hallo.dospuntas.ch/wurf-1-2024/
to hide the snippet.
On the page https://hallo.dospuntas.ch/wurf-2-2024/ and the others you can see what it looks like without this logic entry and the page navigation menu is incomplete. Do I now need to add an entry in the logic for all pages with page navigation or is there an easier solution to get this to display correctly on the iPAD in landscape mode and on the desktop?3. Burger menu on mobile phone and iPad in portrait format:
When you press the back button and then open the menu, the previously selected submenu items are open/visible. If you repeat this with other menu items, you’ll end up with all submenu items expanded rather than closed as they should be.I would be grateful if you could help me resolve the remaining issues.
Many thanks and kind regards
Bruno-
This reply was modified 2 years ago by
brunobuercher.
March 28, 2024 at 1:49 am #1438508In reply to: Bug in last row of table
Hello Mike,
nice to meet you again, thanks for editing my pricing table CSS, honestly I prefer to have only one column and not two, but I understand your point of view.
Unfortunately, as I wrote previously, I have to compact the mobile view in many complex pages, for example:
– https://www.romacittaperta.com/
– https://www.romacittaperta.com/iscrizione-master/
– https://www.romacittaperta.com/risultati-master/
– https://www.romacittaperta.com/calendario/
and so on.I understand it’s a lot of effort, but having 70% of user access via mobile is necessary for the user experience.
What approach do you suggest? Do I need to change the screen length of the entire website? Is there a way to find an approach that can be used widely across all pages? Maybe I need to change the mobile class of an entire page, or change the mobile class of many color sections, or change the mobile class of many individual components?If necessary, I am available to create 2 versions of the same page, one that can be activated from desktop and tablet and one only for smartphones.
I know the standard approach would be to activate 2 versions of each inside color section on the page, but this is not good because it would penalize page load times because all color sections will be loaded even if not displayed.I want to obtain the best possible result in terms of smartphone usability, to obtain this result all my efforts are justified, even redesigning the entire site.
Thanks again for your support
AndreaMarch 28, 2024 at 1:00 am #1438505Hi,
I was just working on another thread where a similar issue was that the sub-menu and the burger menu were still open when the browser back button was used, this is due to the browser serving a browser cached version of the page. The following javascript solved this in my tests, and while my above solution worked for the custom button issue you are having I thought that perhaps this would be a better solution for you as it will also solve the use of the browser back button, so give this a try instead of the above solutions and see if it works for you. I recommend using the WP Code plugin then add a new snippet, in the top right corner use the javascript snippet as the code type:

and add this code:window.addEventListener('pageshow', (event) => { if (window.matchMedia('(min-width: 990px)').matches) { document.querySelectorAll('.sub-menu').forEach((subMenu) => { subMenu.style.opacity = '0'; subMenu.style.visibility = 'hidden'; }); } else { const overlay = document.querySelector('.av-burger-overlay'); if (overlay) { overlay.style.display = 'none'; overlay.style.opacity = '0'; } const hamburger = document.querySelector('.av-hamburger'); if (hamburger) { hamburger.classList.remove('is-active'); } document.documentElement.classList.remove('av-burger-overlay-active', 'av-burger-overlay-active-delayed'); } });Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.Best regards,
MikeMarch 28, 2024 at 12:50 am #1438504Hey Bruno,
Thanks for the screenshots, I tested this on my demo site with Safari on Mac and Firefox on Windows and the sub-menu and the burger menu were open when the browser back button was used, this is due to the browser serving a browser cached version of the page. The following javascript solved this in my tests, I recommend using the WP Code plugin then add a new snippet, in the top right corner use the javascript snippet as the code type:

and add this code:window.addEventListener('pageshow', (event) => { if (window.matchMedia('(min-width: 990px)').matches) { document.querySelectorAll('.sub-menu').forEach((subMenu) => { subMenu.style.opacity = '0'; subMenu.style.visibility = 'hidden'; }); } else { const overlay = document.querySelector('.av-burger-overlay'); if (overlay) { overlay.style.display = 'none'; overlay.style.opacity = '0'; } const hamburger = document.querySelector('.av-hamburger'); if (hamburger) { hamburger.classList.remove('is-active'); } document.documentElement.classList.remove('av-burger-overlay-active', 'av-burger-overlay-active-delayed'); } });Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.Best regards,
MikeMarch 27, 2024 at 11:54 pm #1438502Topic: Column Element Visability not completely working
in forum Enfoldblaisen
ParticipantOn my home page, I have chosen to hide a section on mobile devices. On a desktop device, the section contents are titled “In Case You Missed It”. I went to the Advanced tab in the column element and made the setting. The items in the column do hide, but the layout now has a gap where the column is “hiding”: https://ibb.co/y6YFQ7Q
I tried a number of ways to remove it with CSS, but all attempts effected other pages. I can’t seem to isolate the div specifically on this page to set to display: none; Can you tell me why the setting is not completely working and how I can fix this?
March 27, 2024 at 11:23 pm #1438499In reply to: Product Grid Full-Width
Hey KQed0428,
Thanks for the link to your site, but the login doesn’t allow me to add css, so you will need to add this to achieve what you are asking;
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top.home .product-sorting { display: none; } .responsive #top.home #av_section_3 > .container { max-width: 100%; padding: 0; }Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.Best regards,
MikeMarch 27, 2024 at 8:07 pm #1438487In reply to: Centering Footer Images In Responsive Mode
Hi,
Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardMarch 27, 2024 at 8:00 pm #1438484In reply to: Blurry logo
Hi,
Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardMarch 27, 2024 at 7:52 pm #1438480In reply to: License expired?
Hi,
Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardMarch 27, 2024 at 7:49 pm #1438478In reply to: Change Toggle Title in Accordion Feature to H3
Hi NicomIT,
Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardMarch 27, 2024 at 7:42 pm #1438476In reply to: Header Widget Configuation
Hi,
Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardMarch 27, 2024 at 6:56 pm #1438475In reply to: How to Put Masonry Gallery Title In Its Own Div
Hey TBant,
Thank you for your patience, if you are using the masonry gallery with the caption always showing under the image:

and you want to change the background color of the caption, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .main_color .container .av-inner-masonry-content, #top .main_color .container .av-masonry-entry .avia-arrow { background-color: orange; }After applying the css, please clear your browser cache and check.
This is the expected results:

Best regards,
MikeMarch 27, 2024 at 1:22 pm #1438445In reply to: Picture with headline
Sorry, I just noticed a glitch on ipad view, which is actually the same as desktop. But the background image is at a different position.
What can I do?
The position of the picture seems not to be fixed on the tablet, as it is on desktop-
This reply was modified 2 years ago by
northorie.
-
This reply was modified 2 years ago by
-
AuthorSearch Results
-
Search Results
-
Hi!
I switched the Parallax Logo Area Color to red an now there is a red background at the top of the rasterrow “About us”, which I can’t get rid of.
Could you please tell me where it comes from. :-)
THX
ChristophOn my home page, I have chosen to hide a section on mobile devices. On a desktop device, the section contents are titled “In Case You Missed It”. I went to the Advanced tab in the column element and made the setting. The items in the column do hide, but the layout now has a gap where the column is “hiding”: https://ibb.co/y6YFQ7Q
I tried a number of ways to remove it with CSS, but all attempts effected other pages. I can’t seem to isolate the div specifically on this page to set to display: none; Can you tell me why the setting is not completely working and how I can fix this?
