-
AuthorSearch Results
-
February 5, 2026 at 12:09 am #1494719
In reply to: masonry titles below images
Have you tried making changes yourself using CSS? Because the spacing between the images is not the Enfold standard spacing when set to “large gap.”
February 4, 2026 at 11:38 pm #1494718In reply to: masonry titles below images
so in total : replace the snippet by:
( btw. i changed the code on my page too – if you hover the snippet there is on top right of the codeblock a copy button)/** * Enfold Masonry Caption Fix - NUR für Perfect Grid * Schiebt die Caption unter das Bild, ohne es zu verdecken. */ function enfold_masonry_perfect_grid_caption_fix() { ?> <style> /* ======================================== PERFECT GRID CSS ======================================== */ /* Erlaubt der Caption, über den Container hinauszuragen */ #top .av-masonry.av-fixed-size.av-masonry-gallery .av-inner-masonry, #top .av-masonry-gallery.av-masonry-gallery-fixed figure.av-inner-masonry { overflow: visible !important; } /* Positioniert die Caption direkt unter das Bild-Quadrat */ #top .av-masonry.av-fixed-size.av-masonry-gallery .av-inner-masonry-content, #top .av-masonry-gallery.av-masonry-gallery-fixed figcaption.av-inner-masonry-content { position: relative !important; top: 100%; background: #ffffff; /* Hier ggf. deine Wunschfarbe für den Hintergrund */ } /* Korrektur für Tablets */ @media only screen and (min-width: 767px) and (max-width: 989px) { .responsive .av-masonry-gallery .av-masonry-entry .av-masonry-entry-title + .av-masonry-entry-content { display: block !important; } } </style> <script> (function($) { 'use strict'; function fixPerfectGrid() { // Nur für Masonry Galerien mit festem Raster (Perfect Grid) $('.av-masonry-gallery.av-masonry-gallery-fixed, .av-masonry.av-fixed-size.av-masonry-gallery').each(function() { var $gallery = $(this); var columnCount = 1; // Spaltenanzahl ermitteln if ($gallery.hasClass('av-masonry-col-2')) columnCount = 2; else if ($gallery.hasClass('av-masonry-col-3')) columnCount = 3; else if ($gallery.hasClass('av-masonry-col-4')) columnCount = 4; else if ($gallery.hasClass('av-masonry-col-5')) columnCount = 5; else if ($gallery.hasClass('av-masonry-col-6')) columnCount = 6; if ($gallery.hasClass('av-masonry-col-flexible')) { var $items = $gallery.find('.av-masonry-item-with-image:visible'); if ($items.length >= 2) { var firstTop = $items.eq(0).offset().top; var itemsInFirstRow = 1; for (var i = 1; i < Math.min($items.length, 10); i++) { if (Math.abs($items.eq(i).offset().top - firstTop) < 10) { itemsInFirstRow++; } else { break; } } columnCount = itemsInFirstRow; } } // Maximalhöhe der Captions finden, damit die Zeilen gleichmäßig bleiben var maxCaptionHeight = 0; $gallery.find('.av-masonry-item-with-image').each(function() { var $caption = $(this).find('figcaption.av-inner-masonry-content, .av-inner-masonry-content'); if ($caption.length && $caption.is(':visible')) { maxCaptionHeight = Math.max(maxCaptionHeight, $caption.outerHeight(true)); } }); // Abstand unten einfügen, damit das Masonry-Layout Platz für die Caption lässt if (maxCaptionHeight > 0) { $gallery.find('a.av-masonry-entry, .av-masonry-item-with-image').css('margin-bottom', maxCaptionHeight + 'px'); } }); // Layout neu berechnen $('.av-masonry-gallery.av-masonry-gallery-fixed, .av-masonry.av-fixed-size.av-masonry-gallery').isotope('layout'); } // ======================================== // INITIAL LOAD - Nur auf Bilder warten, nicht auf die ganze Seite // ======================================== (function() { var $gallery = $('.av-masonry-gallery'); if ($gallery.length && typeof $.fn.imagesLoaded === 'function') { // Wartet NUR auf die Bilder in der Galerie $gallery.imagesLoaded(function() { setTimeout(fixPerfectGrid, 200); }); } else { // Fallback für den Notfall setTimeout(fixPerfectGrid, 600); } })(); // Nach Enfold Events $(document).on('av-masonry-complete', function() { setTimeout(fixPerfectGrid, 250); }); // Bei Größenänderung $(window).on('debouncedresize', function() { // Reset Margin $('.av-masonry-gallery.av-masonry-gallery-fixed .av-masonry-item-with-image, .av-masonry.av-fixed-size.av-masonry-gallery .av-masonry-item-with-image').css('margin-bottom', ''); fixPerfectGrid(); }); })(jQuery); </script> <?php } add_action('wp_footer', 'enfold_masonry_perfect_grid_caption_fix', 999);i also replaced the on load event by:
// Run initially $(window).on('load', function() { $('.av-masonry-gallery').imagesLoaded(function() { setTimeout(fixAllMasonryModes, 200); }); });and implemented the enfold debounceresize function on performance reasons.
February 4, 2026 at 11:35 pm #1494717In reply to: masonry titles below images
If you make the browser window a little bigger or smaller, you will see that it works. It seems to be a timing problem affecting your page.
So try changing the timings:Try to change inside the snippet the values of :
// Initial loading: Wait longer for images $(window).on('load', function() { setTimeout(fixAllMasonryModes, 600); // 300 → 600ms }); // After events: A little more time $(document).on('av-masonry-complete', function() { setTimeout(fixAllMasonryModes, 250); // 100 → 250ms }); $('body').on('av-isotope-finished', function() { setTimeout(fixAllMasonryModes, 250); // 100 → 250ms });by the way:
Different Solution – even the captions will have the same height on perfect Grid
However, this does not look so good in some cases if the captions are of too different sizes.I’ll remove that because it doesn’t make sense. As soon as one caption is very long in all Masonries, all the others are pulled up to the height of that caption—it doesn’t look good.
It would be different if he adjusted the same caption heights in a row—but I can’t think of a way to do that.February 4, 2026 at 9:33 pm #1494714In reply to: Caching Issue on Multiple Sites
Hi Mike –
Yes correct – images in color sections are not showing across about dozen sites. I am using the Flush Cache provided by the host within WordPress.
Yes I will try that.
This has just suddenly become an issue – are you aware of a fix coming?
Thanks for the reply!
February 4, 2026 at 9:27 pm #1494713In reply to: Caching Issue on Multiple Sites
Hey annameis,
I assume that your issue is that some images are not showing until you clear your cache, is this your browser cache, WordPress cache, cache plugin, theme cache, or server cache?
Are the images background images in your color sections? These are shown via CSS in the post_css function, depending on your cache time limits, this is typically not an issue with the theme, but you could try this function in your child theme functions.php file to disable:function custom_avf_post_css_create_file( $create ) { return false; } add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );Then clear all of the above caches and check again.
Best regards,
MikeFebruary 4, 2026 at 7:36 pm #1494707Topic: Caching Issue on Multiple Sites
in forum Enfoldannameis
ParticipantFor the past couple weeks I have had issues with images showing up on my Enfold theme websites. All are hosted with GoDaddy and as soon as I clear the cache and they are fine. This happening randomly several times a week. I have contacted the host and they have not solved.
Is this a new issue with Enfold and if so how do I fix as I have dozens of Enfold websites.
Thank you!
February 4, 2026 at 6:03 pm #1494695Topic: Header text / image changes on all pages
in forum Enfoldschwabino
ParticipantHello – for some reason, my website has the page’s header images removed, and the text is super small. When I log in and update the page, it fixes itself. I did a theme update but still needed to update each page manually? Do you know what is causing this?
February 4, 2026 at 4:57 pm #1494693Topic: masonry titles below images
in forum EnfoldMunford
ParticipantHI
Is it possible to place the titles / excerpts below the images in masonry galleries and grids?
I’d like to be able to see the whole image.
Thanks
NancyFebruary 4, 2026 at 10:45 am #1494667ColinWalton
ParticipantFor some reason one of my websites has suddenly stopped displaying some of the images properly.
This is how the home page looks now https://insiderdealingsw4.com/about-insider-dealings-2-copy-2/
I have had to put in still images on the real home page to stop it being blank.
Scroll to the bottom and there should be a portfolio grid. If you roll over the images they display, otherwise don’t show at all.
I have tried rebuilding the page which hasn’t helped. I have NOT updated anything for a week or so. Last time I looked at the website it was displaying perfectly.
The whole website is the same!
I can give you access to the back end if that helps?
February 4, 2026 at 6:18 am #1494657In reply to: modulo g-traslate
February 4, 2026 at 6:09 am #1494653In reply to: CPT Sticky Posts in Masonry
February 4, 2026 at 5:42 am #1494652In reply to: Chnage text only capital letters
February 4, 2026 at 5:34 am #1494651In reply to: Alignment of Icons on Sliders
Hey condonp,
Thank you for the inuquiry.
Looks like you have added the icons manually using html. Make sure to add a unique class name to the icon container, for example “av-custom-icon”, and then add this css code to adjust their minimum height.
#top .slide-entry-excerpt.entry-content .av-custom-icon { min-height: 40px; }Result:
Best regards,
IsmaelFebruary 4, 2026 at 5:32 am #1494649Topic: drop shadow on buttons
in forum Pre Sale Questionsbemodesign
ParticipantIs there a way to add a drop shadow to all the buttons that are Light Transparent? They are on most of the pages at the top of the page: https://neighborhoodsinphoenix.com/
They all have images behind them and it sometimes gets hard to read.
Let me know if there is an CSS that would work for the site.
thanks!!
February 4, 2026 at 5:23 am #1494646Hey Lee Sang Min,
Thank you for the inquiry.
Did you add any html tags in the Tab Section element? Please make sure that all tags are valid and properly closed. Invalid html tags could break the page layout and cause errors in the builder.
We tried accessing the video, but the file is not accessible on our end, without logging in. Would you mind using a different video hosting platform like streamable (https://streamable.com/)? You can also use platforms like FreeImage, ImgBB, PostImages or Dropbox to upload and share a screenshot.
In the meantime, please make sure that the theme is updated to version 7.1.3 and WordPress to version 6.9.1. Let us know if the issue persists.
Best rega
February 4, 2026 at 5:20 am #1494645In reply to: Tab Section ?
Hey Lee Sang Min,
Thank you for the inquiry.
The file is not accessible on our end. Would you mind using a different video hosting platform like streamable (https://streamable.com/)? You can also use platforms like FreeImage, ImgBB, PostImages or Dropbox to upload and share a screenshot.
In the meantime, make sure that the team is updated to version 7.1.3 and WordPress to 6.9.1. Let us know if the issue persist.
Best regards,
IsmaelFebruary 4, 2026 at 5:01 am #1494644Hi,
Thank you for the info.
To remove the default pencil icon for posts without featured images, try to add this css code:
.rounded-container .iconfont, .small-preview .iconfont { display: none; }Then add this code to ensure the featured image covers the entire container.
.small-preview img, .big-preview img { width: 100%; object-fit: cover; height: 80px; }Result:
Best regards,
IsmaelFebruary 4, 2026 at 4:52 am #1494642In reply to: Image Gallery same size
February 3, 2026 at 9:49 pm #1494639Topic: Image Gallery same size
in forum Enfolddaninap
Participantal link seguente si è presente una galleria, con 4 immagini alla quale ho impostato la dimensione 300X300
come mai una la vedo di dimensione diversa ?
potete aiutarmi?February 3, 2026 at 8:35 pm #1494637Hi Ismael,
Yes I did remove the css code you suggested and the Preview image appears in the “Blog Posts Content Element”
uvpublichealth.oorg/news
but when I hide the featured image on the blog post I get still get a large icon with a pencil — how do I hide that pencil icon?February 3, 2026 at 7:06 pm #1494631Topic: Tab Section ?
in forum Pre Sale QuestionsLee Sang Min
Guesthttps://drive.google.com/file/d/1LCTDadxGKcECUNuGReQtH9zo9_5tCZ4O/view?usp=sharing
This is a screen recording of my workspace.
No HTML code or additional custom code has been applied.
When I try to add images or columns, the editor crashes during the save process, as shown in the video.February 3, 2026 at 6:52 pm #1494630https://drive.google.com/file/d/1LCTDadxGKcECUNuGReQtH9zo9_5tCZ4O/view?usp=sharing
This is a screen recording of my workspace.
No HTML code or additional custom code has been applied.
When I try to add images or columns, the editor crashes during the save process, as shown in the video.February 3, 2026 at 6:12 am #1494617In reply to: Setting default blog-Thumbnails
Hi,
Thank you for the update.
Another option is to use the Layout > Feature Image settings in the post editor — see the screenshot below for reference.
If you want to completely remove it by editing the template files, open the includes > loop-index.php file and remove the block of code, found on lines 256 and 430.
if( ! in_array( $blog_style, array( 'bloglist-simple', 'bloglist-compact', 'bloglist-excerpt' ) ) ) { //echo preview image if( strpos( $blog_global_style, 'elegant-blog' ) === false ) { if( strpos( $blog_style, 'big' ) !== false ) { if( $slider && false === $ignore_image_links ) { if( $link_lightbox ) { $slider = '<a ' . $lightbox_attr . ' ' . $featured_img_title . '>' . $slider . '</a>'; } else { $slider = '<a href="' . $link . '" ' . $featured_img_title . '>' . $slider . '</a>'; } } if( $slider ) { echo ' <div class="big-preview ' . $blog_style . '" ' . avia_markup_helper( array( 'context' => 'image', 'echo' => false ) ) . '>' . $slider . '</div> '; } } if( ! empty( $before_content ) ) { echo ' <div class="big-preview ' . $blog_style . '">' . $before_content . '</div> '; } } }Unfortunately, you cannot use the filter above to hide the featured images.
Best regards,
IsmaelFebruary 3, 2026 at 5:31 am #1494613Hi,
Thank you for the update.
The featured images and blog meta inof are not visible on the category page either. Have you tried removing the css code mentioned above? This should restore the blog meta info container along with the featured images.
Best regards,
IsmaelFebruary 2, 2026 at 11:22 pm #1494605Topic: 2 blocks: one static, one scrollable
in forum Enfoldxeovision
ParticipantHi .. i need to build a page with large content like Legal Disclaimer. This page sould noch have the browser scrollbars, so i would like to build it with two block beside each other. The left one should contain the text and have scrollbars, the right one onle a background image that will have same height as the left block.
How can i add scrollbars to the content of the left block to make text scrollable?
February 2, 2026 at 8:50 pm #1494600Hi Ismael,
Thanks for your quick note back..post-entry .blog-meta {
display: none;
}For some reason the code above only affected the Single Post Entries and the Featured Images appeared in the Category Blog Post Multiple listing of small Preview images.
Now on the Single Post Entires a Large Icon appears on the Single post of a Pencil on a large gray square….how do I hide those?
Is there Css to make this icon disappear?
Thanks
February 2, 2026 at 10:26 am #1494586In reply to: Setting default blog-Thumbnails
Hi Ismael,
thanks this works. But it is just a dirty hack.
Loading images in DOM to then not show it ist not a clean solution, isn’t?
Can you please give me a clean php-solution?
Where is the error in my php-snippet above?Thanks
TimFebruary 2, 2026 at 5:50 am #1494577In reply to: Enfold Shop Demo
Hey actichemph,
Thank you for the inquiry.
We have added a Post Slider element below the slider, and the posts seem to be displaying as expected. You may need to select a category in the Content > Entries > Which Entries Should Be Used settings, as shown in the screenshot below.
To help you get started with the theme, please check out the documentation and feel free to reach out here in the forum if you need any assistance.
— https://kriesi.at/documentation/enfold/
Best regards,
IsmaelFebruary 2, 2026 at 5:39 am #1494576In reply to: Setting default blog-Thumbnails
Hey slikslok,
Thank you for the inquiry.
Are you trying to hide the featured image on the single post page or view? You can try this css code instead of using the filter above.
.single .big-preview.single-big { display: none; }Let us know the result.
Best regards,
IsmaelFebruary 2, 2026 at 5:20 am #1494572In reply to: Advanced Editor does not work
-
AuthorSearch Results
-
Search Results
-
For the past couple weeks I have had issues with images showing up on my Enfold theme websites. All are hosted with GoDaddy and as soon as I clear the cache and they are fine. This happening randomly several times a week. I have contacted the host and they have not solved.
Is this a new issue with Enfold and if so how do I fix as I have dozens of Enfold websites.
Thank you!
Hello – for some reason, my website has the page’s header images removed, and the text is super small. When I log in and update the page, it fixes itself. I did a theme update but still needed to update each page manually? Do you know what is causing this?
Topic: masonry titles below images
HI
Is it possible to place the titles / excerpts below the images in masonry galleries and grids?
I’d like to be able to see the whole image.
Thanks
NancyTopic: drop shadow on buttons
Is there a way to add a drop shadow to all the buttons that are Light Transparent? They are on most of the pages at the top of the page: https://neighborhoodsinphoenix.com/
They all have images behind them and it sometimes gets hard to read.
Let me know if there is an CSS that would work for the site.
thanks!!
Topic: Image Gallery same size
al link seguente si è presente una galleria, con 4 immagini alla quale ho impostato la dimensione 300X300
come mai una la vedo di dimensione diversa ?
potete aiutarmi?Topic: Tab Section ?
https://drive.google.com/file/d/1LCTDadxGKcECUNuGReQtH9zo9_5tCZ4O/view?usp=sharing
This is a screen recording of my workspace.
No HTML code or additional custom code has been applied.
When I try to add images or columns, the editor crashes during the save process, as shown in the video.Hi .. i need to build a page with large content like Legal Disclaimer. This page sould noch have the browser scrollbars, so i would like to build it with two block beside each other. The left one should contain the text and have scrollbars, the right one onle a background image that will have same height as the left block.
How can i add scrollbars to the content of the left block to make text scrollable?









