Viewing 30 results - 2,131 through 2,160 (of 106,490 total)
  • Author
    Search Results
  • #1477264

    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,
    Mike

    #1477250

    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.
    #1477243

    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

    #1477241
    bravenessbybosman
    Participant

    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?

    #1477234

    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,
    Dimitri

    #1477224

    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,
    Ismael

    #1477213

    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,
    Ismael

    #1477212

    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,
    Ismael

    #1477211

    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,
    Ismael

    #1477204

    Thank you, that’s a pity…could I achieve it with an image inside a cell?

    Best regards

    #1477202

    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

    #1477201

    Hi,
    Thank you for your patience.
    Glad to hear that you have found the issue, the content blocker setting in Safari.
    Screen Shot 2025 02 16 at 1.05.41 PM
    Unfortunately this is not something that the theme can change within your browser.

    Best regards,
    Mike

    #1477200

    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?

    #1477196

    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.
    Screen Shot 2025 02 16 at 8.08.57 AM

    Best regards,
    Mike

    #1477195

    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.
    Screen Shot 2025 02 16 at 7.31.56 AM
    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,
    Mike

    Hey edgar,
    I don’t see a “Random Faded” option for the masonry gallery:
    Screen Shot 2025 02 16 at 7.11.37 AM
    To add a screenshot please try using an Screenshot service and pasting the image URL in your post.

    Best regards,
    Mike

    #1477192
    northorie
    Participant

    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?
    LInk

    Best regards

    #1477184

    Hey Dunckley_Design,

    This might help you out: https://www.metaslider.com/allow-images-larger-2560-pixels-wordpress/

    Best regards,
    Rikard

    #1477181

    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.
    #1477177
    Dunckley_Design
    Participant

    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.

    #1477176

    Link

    The big images on single post seem to be upscaled, the look “unsharp” and not good.

    Best regards

    #1477171

    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,
    Mike

    #1477168

    Hi,
    I can not see your screenshot as it requires a login, when I check the image goes to the top:
    Screen Shot 2025 02 15 at 12.38.32 PM
    I check on Android, the black area (in the green circle) in your screenshot is from your phone not the site.

    Best regards,
    Mike

    #1477167

    Hey ulrikelauer,
    Thank you for your patience, when I check your setting is: Logo left, Menu below:
    Screen Shot 2025 02 15 at 12.03.01 PM
    I changed for you:
    Screen Shot 2025 02 15 at 12.05.04 PM
    Then I find that you have a unclosed link in your Phone Number Or Small Info Text:
    Screen Shot 2025 02 15 at 12.30.33 PM
    I fixed it for you, now the logo and menu is correct:
    Screen Shot 2025 02 15 at 12.33.00 PM
    please clear your browser cache and check.

    Best regards,
    Mike

    #1477165

    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.
    #1477164

    Hi,
    This green circle is your phone not the site:
    Screen Shot 2025 02 15 at 11.44.28 AM

    Best regards,
    Mike

    #1477157

    Hi,
    The solution is to use equal height for the columns, I changed this for you, please clear your browser cache and check.
    Screen Shot 2025 02 15 at 10.39.20 AM

    Best regards,
    Mike

    Hey 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,
    Mike

    Hey 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,
    Mike

    #1477141
    northorie
    Participant

    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

Viewing 30 results - 2,131 through 2,160 (of 106,490 total)