-
AuthorSearch Results
-
February 17, 2025 at 5:36 pm #1477264
In reply to: responsive issues images
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 767px) { #footer-page .av_one_fifth .avia-image-container { padding: 10px 0; } }adjust the padding to suit.
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.Best regards,
MikeFebruary 17, 2025 at 3:04 pm #1477250In reply to: Possible bug with img tags being parsed
Hi Tim,
This sounds like a server-related issue. Sometimes security measurements on your server or security plugins may delete images, plugins, or themes if they are flagged as suspicious. You can check the security logs to see if that’s the case.
Please also make sure that there’s enough disk space on your server.
In the meantime, I followed the steps and added an image inside the Text Block element on a page on my live testing site. I’ll keep an eye to see if the issue will occur on my website as well.
Edit: Could you please check if you’re having the same issue when adding an inline image using Gutenberg?
Best regards,
Yigit-
This reply was modified 1 year, 2 months ago by
Yigit.
February 17, 2025 at 2:18 pm #1477243In reply to: responsive issues images
Hi Mike, yes that worked, that was actually pretty easy solution… sorry
And the other issue about the white space around the images in the footer on mobile devices (when they are placed beneath each other? Could you also help me with that?
Thanks again
February 17, 2025 at 1:52 pm #1477241Topic: Issues with CSS on Chrome
in forum Enfoldbravenessbybosman
ParticipantHello,
Today I was planning to go live with my site. But in Chrome all the CSS (regarding the fons, colors, buttons) and main images and colors seems missing. When I’m logged in everything looks fine but as soon as I log out, everything is missing. In Safari everything looks fine. Can you please help?
February 17, 2025 at 10:43 am #1477234In reply to: Fullwidth Easy Slider > Fallback image not working
Mike,
I don’t think it had anything to do with caching.
Here’s the workaround I implemented:
Duplicated the existing Fullwidth Easy Slider.
Changed the duplicate to an Image Slide (instead of Video).
Adjusted the Responsive settings of both Fullwidth Easy Slider elements to show the original Video slider only on large screens and the Image slider on all other screens.This seems to work. Do you have any concerns with this approach, particularly regarding performance?
Thank you,
DimitriFebruary 17, 2025 at 3:09 am #1477224In reply to: Transparent logo killing mobile speed.
Hi,
Where do you see the render delay info? For LCP, you can further reduce the image dimensions and preload it using this plugin.
— https://wordpress.org/plugins/preload-lcp-image/
Best regards,
IsmaelFebruary 17, 2025 at 1:27 am #1477213In reply to: Transparent logo killing mobile speed.
Hi,
Thank you for the inquiry.
Looks like you’ve managed to resolve the LCP issue with the image. The score is now 97 on mobile. https://pagespeed.web.dev/analysis/https-seattledecksupply-com/rkxqgiuzgg?form_factor=mobile
Best regards,
IsmaelFebruary 17, 2025 at 1:22 am #1477212In reply to: Single Post: Change Headline and Image
Hi,
You can add this css code to adjust the height of the featured image.
.small-preview, .big-preview { max-height: 200px; } .small-preview img, .big-preview img { width: 100%; height: 200px; object-fit: cover; }Best regards,
IsmaelFebruary 17, 2025 at 1:18 am #1477211In reply to: Layout possible with Enfold?
Hi,
Yes, you can use an Image element, apply a Custom CSS Class to it, and then make a few css modifications to adjust its position. This can also be achieved with pure css. If you can provide a test page, we’ll send you the initial css.
Best regards,
IsmaelFebruary 16, 2025 at 7:44 pm #1477204In reply to: Layout possible with Enfold?
Thank you, that’s a pity…could I achieve it with an image inside a cell?
Best regards
February 16, 2025 at 7:41 pm #1477202In reply to: Single Post: Change Headline and Image
Thank you! This helps!
Can I “cut” the image somehow using php? I don’t want cut the image itself, but want to have it not that high, but smaller, on the single post page.Best regards
February 16, 2025 at 7:12 pm #1477201In reply to: Footer visibility problem in Safari (Enfold 6.0.9)
February 16, 2025 at 6:04 pm #1477200In reply to: Transparent logo killing mobile speed.
One issue I discovered using Rocket is that delaying js in totality caused the layer slider to only load a white page besides the logo. I was able to exclude Enfold js, not all of it but what looked related to sliders, in the drop down menus of Rocket. There’s a box to white list specific js, I’ll have to research to discover the specific piece to include there.
I don’t seem to be losing the speed gained by having the whole image load. I was concerned the speed gains came from loading a white page.The original issue remains despite being improved. I can’t imagine that little logo WebP file can be sucking up that much time. The distribution of time is mostly allocated to “load delay” so it must be something with scripts not the image itself. Again, if I drop in a non-transparent version, this all goes away, I believe it is the transparency causing the issue.
If it means anything I looked at a friends page and they have a similar issue although their theme is one that uses Elementor so this may be a WP issue and not intrinsic to Enfold?February 16, 2025 at 2:10 pm #1477196In reply to: Enlarging background image within cell
Hey northorie,
The image is in a 1/3 column and the image width fills it, I assume that you want it taller without stretching it.
So try changing your columns to a larger size, or this css:@media only screen and (min-width: 1024px) { .responsive .home #av_section_1 .container { max-width: 100%; } }Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

Best regards,
MikeFebruary 16, 2025 at 1:54 pm #1477195In reply to: Single Post: Change Headline and Image
Hi,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function custom_script() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ $('.single-post').each(function() { $(this).find('.entry-content-header').css({'margin-top':'15px'}).insertAfter($(this).find('.big-preview').css({'margin-top':'0'})); }); })(jQuery); }); </script> <?php } add_action( 'wp_footer', 'custom_script', 99 );Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

To use the full size featured image for single posts with a sidebar, instead of the 845×321 size that will be upscaled, add this code to the end of your child theme functions.php file in Appearance ▸ Editor:add_filter( 'post_thumbnail_size', 'custom_single_event_post_thumbnail_size' ); function custom_single_event_post_thumbnail_size($size) { if( !is_singular('post') ) { return; } if( ! has_post_thumbnail() ) { return; } $size = 'full'; return $size; }Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
MikeFebruary 16, 2025 at 1:17 pm #1477193Hey edgar,
I don’t see a “Random Faded” option for the masonry gallery:

To add a screenshot please try using an Screenshot service and pasting the image URL in your post.Best regards,
MikeFebruary 16, 2025 at 1:12 pm #1477192Topic: Enlarging background image within cell
in forum Enfoldnorthorie
ParticipantHi,
I’m working on a new project and would like to enlarge the image of the two women in yellow to fill the right cell.
How can I achieve this?
LInkBest regards
February 16, 2025 at 11:59 am #1477184In reply to: Images resized when uploaded
Hey Dunckley_Design,
This might help you out: https://www.metaslider.com/allow-images-larger-2560-pixels-wordpress/
Best regards,
RikardFebruary 16, 2025 at 2:40 am #1477181In reply to: Mobile view top area formatting
It says anyone with a link has access, but maybe there is something blocking you. Anyways, here it is: https://img.savvyify.com/image/correct.92epd
I’ve had this on a few of my site, where the image goes all the way to the top of phones. I know you can change the color of that top area, but I’ve also had code to show the image up there. thanks
-
This reply was modified 1 year, 2 months ago by
bemodesign.
February 15, 2025 at 9:26 pm #1477177Topic: Images resized when uploaded
in forum EnfoldDunckley_Design
ParticipantHello, for some reason, my images are being resized to 2560 by 768 pixels. The original size is 4000 x 1200, but when I upload, it shows as 2560 x 768.
February 15, 2025 at 8:35 pm #1477176In reply to: Single Post: Change Headline and Image
The big images on single post seem to be upscaled, the look “unsharp” and not good.
Best regards
February 15, 2025 at 7:46 pm #1477171In reply to: Mobile view top area formatting
Hi,
I can not see your screenshot as it requires a login, To add a screenshot please try using an Screenshot service and pasting the image URL in your post.Best regards,
MikeFebruary 15, 2025 at 6:42 pm #1477168In reply to: Mobile view top area formatting
February 15, 2025 at 6:33 pm #1477167In reply to: Menü und Logo werden nicht korrekt angezeigt.
Hey ulrikelauer,
Thank you for your patience, when I check your setting is: Logo left, Menu below:

I changed for you:

Then I find that you have a unclosed link in your Phone Number Or Small Info Text:

I fixed it for you, now the logo and menu is correct:

please clear your browser cache and check.Best regards,
MikeFebruary 15, 2025 at 6:13 pm #1477165In reply to: Mobile view top area formatting
Ha, yes, I know that. Bu the image used to go all the way to the top. like this: example site that the photo goes all the way to the top: https://drive.google.com/file/d/1eRMLMPlQeM0T6hBy3Danuzys48c4lWbe/view
And now it doesn’t, it shows a black areas, instead of the image going to the top of phone.
-
This reply was modified 1 year, 2 months ago by
bemodesign.
February 15, 2025 at 5:46 pm #1477164In reply to: Mobile view top area formatting
February 15, 2025 at 4:41 pm #1477157In reply to: responsive issues images
February 15, 2025 at 4:02 pm #1477155Hey sh7850,
Typically when you are logged in and css of an element is correct, this is a sign that the issue is with your caching plugin. Try clearing or disabling your caching plugin. Then clear your browser cache, and check.
Or try this css in your Quick css:.avia-image-container .av-caption-image-overlay-bg { opacity: 0.6; background-color: #ffffff; }After applying the css, please clear your browser cache and check.
Best regards,
MikeFebruary 15, 2025 at 2:03 pm #1477144Hey christophe rouchon,
You don’t need a subscription or a activate license to import a demo.
Try increasing the PHP max execution time and time limit values.
The demos are imported via the WordPress XML file, which is a file that links the images to our domain, (IP address) typically the curl 28 error means that our IP address has been blocked, some hosts like OVH block our IP, I don’t know why but we have reached out to them for a few years and once in a while sometimes they might unblock us, but later it will always get blocked again. Most of the time they are not helpful. I don’t know your host, but if it is them, this is the issue.As a workaround, you can install the demo on a local host on your computer and then use the plugin Duplicator to move to your live site. This is typically the easiest solution.
Best regards,
MikeFebruary 15, 2025 at 12:45 pm #1477141Topic: Single Post: Change Headline and Image
in forum Enfoldnorthorie
ParticipantHello,
is there a way to change the headline and image position on a single post?
I would like the post image to be right under the menu without any space – or maybe just a very small space and the tile underneath the image.Best regards
Yvonne -
This reply was modified 1 year, 2 months ago by
-
AuthorSearch Results
-
Search Results
-
Topic: Issues with CSS on Chrome
Hello,
Today I was planning to go live with my site. But in Chrome all the CSS (regarding the fons, colors, buttons) and main images and colors seems missing. When I’m logged in everything looks fine but as soon as I log out, everything is missing. In Safari everything looks fine. Can you please help?
Hi,
I’m working on a new project and would like to enlarge the image of the two women in yellow to fill the right cell.
How can I achieve this?
LInkBest regards
Topic: Images resized when uploaded
Hello, for some reason, my images are being resized to 2560 by 768 pixels. The original size is 4000 x 1200, but when I upload, it shows as 2560 x 768.
Hello,
is there a way to change the headline and image position on a single post?
I would like the post image to be right under the menu without any space – or maybe just a very small space and the tile underneath the image.Best regards
Yvonne




