Hi,
Thank you for the update.
In the Masonry edit panel, go to Styling > Masonry Settings, then locate the Image Size settings. Set this to the first option No Scaling to display the image at its original size. Please let us know the result.
Best regards,
Ismael
Hey condonp,
Thank you for the inquiry.
You can use this css code to apply borders to the masonry images:
.av-fixed-size .av-masonry-image-container, .av-fixed-size .av-masonry-outerimage-container {
border: 1px solid #000000;
}
.av-fixed-size .av-masonry-image-container .av-masonry-image-container, .av-fixed-size .av-masonry-outerimage-container .av-masonry-image-container {
border: 10px solid #ffffff;
}
Result:

Best regards,
Ismael
I am trying to alter the images dimension and size of the Masonry Gallery and add a small border as in https://wayneandersonart.com/gallery/nggallery/advertising-design/advertising-design. I have created a page at https://peter-test1.co.uk/test/ but don’t seem to be able to alter the image dimensions to copy this can you help please.
Many thanks
Pete
I believe Enfold is stripping out background before publishing. I can not locate the background image when inspecting the live page.
I have adjusted the Background Attachment options, several different photos, both small and large. I have noticed sometimes when I turn off the arrow it works, but not often. I have cleared the cache several times.
Please help.
Thanks,
Drake
I have adjusted the Background Attachment options, several different photos, both small and large. I have noticed sometimes when I turn off the arrow it works, but not often. I have cleared the cache several times.
Please help.
Thanks,
Drake
if the auto group setting on : avia-snippet-lightbox.js should not be hampered globally – you can give a custom-Class to a parent element or the element itself ( f.e. a img gallery or masonry or the color-section with your images) e.g: noGroup
Then change the behaviour by child-theme functions.php snippet:
function conditional_disable_lightbox_gallery() {
?>
<script type="text/javascript">
(function($) {
$(function() {
setTimeout(function() {
$('.noGroup a.lightbox-added').each(function() {
var $link = $(this);
$link.magnificPopup('destroy');
$link.magnificPopup($.extend({}, $.avia_utilities.av_popup, {
gallery: {
enabled: false,
navigateByImgClick: false
}
}));
});
}, 100);
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'conditional_disable_lightbox_gallery', 999);
see: https://webers-testseite.de/image-masonry/
-
This reply was modified 1 month, 1 week ago by
Guenni007.
Dear Sirs,
I have disabled the arrows on the navigation of the lightbox using the suggested css but I notice when I click on the image it still scrolls across. Is there any way we can stop this so we disable the scroll when someone clicks on the image please.
Many thanks
Peter
Ok many thanks, Just one other issue I want to disable the navigation on the lightbox, so have disabled the arrows using css but see that if you click onto image it still slides to next image. Can this be disabled as client only wants one image at a time to show .
Thanks
Pete
Dear Support Team,
I created a website using Enfold and LayerSlider. The LayerSlider works quite ok on all browsers except Safari. Since the menu is designed to work on the background color of the Video the Video needs to start or show right away.
Please check the site and tell me what to change in the settings / how to make it work in Safari. Also maybe there is a workaround using a backup image that is only show on safari before the video starts.
The Video is already set as background in the slider and muted as described in some threads as workaround.
Thanks for your help.
the better way would be over flexbox layout then …
you got before more than 12 columns inside that section with your images – that should be inside a section –
then the next color-section contains your heading – a separator (f.e. in one 1/1 column) and your videos – maybe inside 1/3 columns
see what happens if you place this to your quick css:
#av_section_1 .container {
max-width: 800px;
margin: 0 auto !important;
}
#av_section_1 .entry-content-wrapper {
display: flex;
flex-flow: row wrap;
justify-content: center;
gap: 20px
}
#av_section_1 .entry-content-wrapper:before,
#av_section_1 .entry-content-wrapper:after {
display: none;
}
#av_section_1 .entry-content-wrapper .flex_column {
flex: 0 1 30%;
width: unset !important;
margin: 0;
padding-bottom: 20px;
}
@media only screen and (max-width: 599px) {
#av_section_1 .entry-content-wrapper .flex_column {
flex: 0 1 45%;
}
}
@media only screen and (max-width: 359px) {
#av_section_1 .entry-content-wrapper .flex_column {
flex: 1 1 100%;
}
}
you can now pull all your columns from your color-section: #section-width with your images to that first color section.
Do you really want it to be that narrow on small screens?
I would set the content differently to narrow. Therefore, remove:
#section-width {
max-width: 50%;
left: 50%;
position: relative;
transform: translateX(-50%);
}
and set instead:
#section-width .container {
max-width: 750px;
}
And here’s the next layout tip.
I would place different design elements in different color sections.
So all gallery images in one section (#section-width) – including the single one that comes last – without empty columns – then the films below in a separate section.
If you have done that – i will give you a flex-box code to style your gallery.
Hey tristen1,
Thank you for the inquiry.
We didn’t find any script issues on the frontend when we checked the Query Monitor overview. Would you mind providing a screenshot of the issue? You can upload it using platforms like Savvyify, ImgBB, PostImages or Dropbox.
This is what we get from Query Monitor:

Best regards,
Ismael
Hi,
Thank you for the update.
Try to add this css code to show the full image:
#top .fullsize .template-blog .big-preview img {
min-width: 300px;
background-size: contain;
}

Best regards,
Ismael
Dear Ismael,
Than you!
Yes, I did use the plugin but the new upload of the image almost did it:
Now the image is squared but croped at the right.
How can I show the whole image?
Thank you!
Jasna
try:
.responsive #top #section-container-width .container {
width: 100% !important;
max-width: 100% !important;
padding: 0;
}
.responsive #top #section-container-width .avia-image-diff-container {
margin: 0 !important;
}
.responsive #top #section-container-width .av-image-diff-wrapper,
.responsive #top #section-container-width .av-image-diff-wrapper img {
width: 100%;
max-width: 100% !important;
margin: 0
}
your images are 1024px width – so you had to stretch them to the container width.
Hi,
I want to display the title and cation of an Easy Slider below the images on this page, with title on the right at 25% width and caption on the left at 75% width. I tried code from other threads with the same topic to no avail.
I did set “liste-recette” as a custom CSS class for my Easy Slider element. I did successfully hide the slideshow controls with the following CSS:
div.liste-recette div.avia-slideshow-controls {
display: none;
}
I tried code from other threads with the same topic but, after several hours hammering on that, I can’t figure out the correct CSS to make it work.
Best regards,
Serge
have a look at: https://webers-testseite.de/woodnest/
i placed the styles and script as inline codes in a codesnippet.
there might be solutions if we have to put in one image column two content columns (f.e. 2/3 – 1/3)
Thank you for your quick response. Will this deal with the logo image change from a transparent header (with all-white logo) to an opaque header (two-tone logo)?
Hey Sebastian,
Thank you for the inquiry.
That is not possible without significant modifications to the theme, unfortunately. We recommend using the Content Slider instead so you can control the content for each slider. Try manually adding an image and text for each slide.
Best regards,
Ismael
Hey coredesignsupport,
Thank you for the inquiry.
Would you mind providing a screenshot of the issue? The logo image cannot be translated by default, but you can use the avf_logo filter to assign a different logo image based on different conditions, like different language.
Example:
function avf_logo_mod($logo){
$currentlang = get_bloginfo('language');
if($currentlang == "fr_FR"){
$logo = 123; // <-- replace with the FR logo image
}
return $logo;
}
add_filter('avf_logo','avf_logo_mod');
Best regards,
Ismael
I’m very happy with the way Enfold and Translatepress work together for the most part. However, there seems to be an issue with translating the logo image between English and French in the transparent header.
English: lambdafoundation.org
French: lambdafoundation.org/fr/
The translation procedure appears to work but is not reflected in the translated site. Translatepress seems to be confused by the swap between the white transparent logo and the RGB version of the logo that appears when the site visitor scrolls down the page.
Can anyone suggest a fix (or if I’m doing something wrong)?
Hi,
Kriesi uses a image and not the FB script because the FB script is bloacked by may browsers by default, such a Safari. Users need to turn it off in the settings to see the FB box manually but most don’t know to do this. I’m not sure why the widget is not working for you, but once we figure it out your visitors may still not see it due to ad-blockes or the default actions of the browsers. This maybe something to consider.
Best regards,
Mike
Mike,
Have tried everything you mention without success. I have also found that the default facebook of Kriesi does not work when added to my website. See https://respectaclecompany.co.uk/Facebook.jpg. Whereas on the right hand section of this page shows the Kriesi facebook header image showing?
Hi,
maybe this was already requested but i did not find it.
I am using the Logo slider. On mouse over the caption appears but i would like to have it below the image as text and always visible.
Is there a quick solution for that?
or maybe another Plugin that i can use?
Hi,
I see, thanks. Your widget is not showing any errors in the console and there is only one image, your logo, in the FB iFrame code. Try checking that your Facebook page is set to “Visible to Everyone”.
You can also try creating the Facebook Like Box manually to see if it then shows. Try Method 2: Adding a Facebook Like Box With Code
Unfortunately I’m not able to test this on my end as I don’t have a FB account.
Best regards,
Mike
Dear Mike,
If you goto the actual facebook page you will see the images in the header see link. The images in the header (dogs) do not come through. They use to in the past.
https://www.facebook.com/Respectacle.Company/?ref=embed_page#
Hey condonp,
Thanks for your patience, the FB widget looks correct to me:

please explain further.
Best regards,
Mike
Hi,
In this recipe page, I want hovering the ingredients list automatically shows the corresponding ingredient image in the Easy Slider.
I noticed those links for slider dots, but they have no effect when used outside Easy Slider:
<a href='#1' class='goto-slide active'>1</a>
<a href='#2' class='goto-slide '>2</a>
<a href='#3' class='goto-slide '>3</a>
<a href='#4' class='goto-slide '>4</a>
<a href='#5' class='goto-slide '>5</a>
<a href='#6' class='goto-slide '>6</a>
<a href='#7' class='goto-slide '>7</a>
<a href='#8' class='goto-slide '>8</a>
Thanks,
Serge
Guys,
I installed Arabic language which is RTL.
All home page elements are now right to left except the header. Please check the below image.
https://greensvill.com/wp-content/uploads/2025/11/RTL-header-scaled.png