Forum Replies Created

Viewing 30 posts - 151 through 180 (of 34,894 total)
  • Author
    Posts
  • Hi,
    Try adding a custom class to the image element in the advanced tab > developer settings > custom class
    Screen Shot 2025 08 25 at 5.01.12 PM
    then adjust the css to suit, you can add a custom class to each image and add new css for each one.

    Best regards,
    Mike

    in reply to: Problems with update Enfold 7.1.2 #1488466

    Hi,
    I checked both pages in Firefox and the portfolio images show for me.
    I don’t know why you are not seeing them, perhaps it is a cache issue.

    Best regards,
    Mike

    in reply to: Code block change seems to have affected page display? #1488465

    Hi,
    Thanks for your patience, I don’t think that would help. Try disabling your theme cache & Jetpack & any server cache.
    Since it changes after page load, this typically points to a cache issue.
    The page width in the theme settings is 1310px, but after page load it is 1010px due to this file:

    _jb_static/??a97ef38bc7

    which is a cache file.
    Or you can try this css:

    .container.av-section-cont-open {
        max-width: 1310px !important;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Change anchors of scroll down link buttons #1488464

    Hi,
    Thanks for your patience, I see that you are forcing a fixed header for mobile which is not a theme option, which is ok, but the problem is that the solution is written in PHP, so the avf_header_setting_filter is applied in PHP before the page is rendered, so it can’t directly detect the screen size. (PHP runs server-side, screen width is only known client-side in the browser).
    If the above solution worked for you then try also adding this to your functions.php file:

    add_action('wp_head', function () {
        ?>
        <style>
            :root { --scroll-offset: 48px; }
            @media (max-width: 767px) {
                :root { --scroll-offset: 80px; }
            }
            @media (min-width: 768px) and (max-width: 1023px) {
                :root { --scroll-offset: 64px; }
            }
        </style>
        <script>
            (function($){
                $(function(){
                    if (typeof avia_header_scroll_offset !== 'undefined') {
                        var offset = getComputedStyle(document.documentElement)
                                     .getPropertyValue('--scroll-offset');
                        avia_header_scroll_offset = parseInt(offset, 10);
                    }
                });
            })(jQuery);
        </script>
        <?php
    });
    

    If this doesn’t work then you should remove both and use javascript, let us know.

    Best regards,
    Mike

    Hey sky19er,
    The Contact Form element doesn’t support MailChimp, you can use the MailChimp Signup element, or the Enfold MailChimp Newsletter widget.
    Screen Shot 2025 08 24 at 5.54.51 AM

    Best regards,
    Mike

    Hey solf,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #av-layout-grid-1 .avia-image-container .avia-image-container-inner img {
    	height: 100%;
    	width: 100% !important;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: How to add new image dimensions in enfold theme #1488456

    Hey Taha,
    Thanks for your patience, add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter('avf_modify_thumb_size', 'custom_modified_thumb_sizes', 10, 1);
    function custom_modified_thumb_sizes(array $sizes) {
        $sizes['tab_thumb'] = array('width' => 260, 'height' => 80, 'crop' => true);
        return $sizes;
    }

    then upload a new image, then add your image to the image element:
    Screen Shot 2025 08 23 at 3.46.38 PM
    then go to the style tab and select the new size:
    Screen Shot 2025 08 23 at 3.49.34 PM
    the backend may show the full uncropped image, but the frontend will show the new image size.
    After testing, if you want all of your images to have this new size, install the Regenerate Thumbnails plugin and run it.
    Since your new size won’t work will for most images changing 'crop' => true); in the code to 'crop' => false); won’t help, unless you are uploading a image that is already 260×80, or a multiple of that aspect ratio without cropping.
    For example, this image was a very large image, and after Regenerate Thumbnails it shows the in the new size:
    Screen Shot 2025 08 23 at 4.05.24 PM

    Best regards,
    Mike

    in reply to: blog post image hover #1488455

    Hey Munford,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .slide-entry a.slide-image img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    }
    
    .slide-entry a.slide-image:hover img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    }
    
    #top .slide-entry .slide-content h3 a {
    	color: #000;
    }
    #top .slide-entry .slide-content h3:hover a {
    	color: #fff !important;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hey Michael F,
    Thanks for your patience, but unfortunately we are not familiar with the complianz-cookie-listing plugin. Perhaps the plugin has an option to rescan the site or remove incorrect listings? I recommend checking: https://complianz.io/support/

    Best regards,
    Mike

    in reply to: installing adobe fonts #1488445

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Try disabling your Advanced Floating Content plugin.

    Best regards,
    Mike

    in reply to: Code block change seems to have affected page display? #1488375

    Hi,
    This was because the text was set to center in the element and not justified, and to had hard line breaks, I corrected, please check now.

    Best regards,
    Mike

    in reply to: adding columns #1488372

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Change anchors of scroll down link buttons #1488370

    Hey Alexandre,
    Those “next section” arrows are built in and seem to be working correctly. Are finding that they don’t go enough or too far?
    Try this solution

    Best regards,
    Mike

    Hi,
    Glad Guenni007 could help, thank you Guenni007, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Code block change seems to have affected page display? #1488365

    Hi,
    and this:
    Screen Shot 2025 08 21 at 10.33.00 AM

    Best regards,
    Mike

    in reply to: Code block change seems to have affected page display? #1488364

    Hi,
    Perhaps you have found the error, when I check in Chrome, Firefox, Safari and Brave, it looks like this:
    Screen Shot 2025 08 21 at 10.28.09 AM

    Best regards,
    Mike

    in reply to: Fatal Error on Contact Page – Theme Related Issue #1488360

    Hi,
    To update try to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: Facebook feed and X-Twitter timeline widgets in Footer #1488358

    Hey Steven,
    Your [fb_widget] shortcode was in a text block widget, it should be in a custom HTML widget, I did this for you, but this shortcode is for the Widget for Social Page Feeds plugin, which I installed for you, now it is showing, but you still have Error with Permissions-Policy header so you latest post is not showing, these headers need to be set on your webhost. Otherwise you could try a newer plugin with it’s shortcode, or try our FB like box, Please note that it needs to be a link to a facebook fanpage. Personal profiles are not allowed!
    Your X widget is working, but you have no posts, see this documentation on X

    Best regards,
    Mike

    in reply to: anchor link issue with sticky header on mobile #1488356

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Fixed header #1488355

    Hey jarodebnar,
    Please see the theme setting Enfold Theme Options ▸ Header ▸ Header behavior ▸ Sticky Header
    Screen Shot 2025 08 21 at 8.09.39 AM

    Best regards,
    Mike

    in reply to: Upgrading from version 3.7.1 #1488354

    Hey Pam Haskell,
    I would not expect issues with updating, but you will need to do it manually and then update your PHP to v8
    I recommend creating a full backup of your site including the database with your webhost tool, and not a plugin.
    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: Easy slider description box #1488353

    Hi,
    Thank you for your patience, to change the lower button to roboto, try this css:

    .av-d2qwg-e9ae8fb5484d65afa63467cb5d9917ef h4 {
    	font-family: 'roboto' !important;
    }

    I was not able to login to adjust the heading box. It looks like the link above to the special character documentation was broken, this one is correct.
    Here is the list of characters and their replacement:

    
    <    =    ###lt### 
    >    =    ###gt###
    [    =    ###91###
    ]    =    ###93###

    Best regards,
    Mike

    in reply to: Upgrade #1488157

    Hey Claude Michaud,
    To update your version of Enfold, first you need to remove your custom header.php and footer.php from your child theme, then you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: Can not Update Enfold Theme #1488156

    Hi,
    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: Custom Social Media Icon to Top Bar (Using Image) #1488116

    Hi,
    Please unblock us & everyone:
    Screen Shot 2025 08 15 at 3.10.05 PM

    Best regards,
    Mike

    in reply to: increase size of logo and burger icon on mobile view #1488115

    Hi,
    Do you want the logo to break out of the header? Right now it is within the header and the Burger icon is centered.
    See the screenshot below.

    Best regards,
    Mike

    in reply to: increase size of logo and burger icon on mobile view #1488100

    Hey bemodesign,
    It seems to be the same height as the header for mobile, do you want the header larger?
    See the screenshot below.

    Best regards,
    Mike

    in reply to: Create a bottom to change the language #1488099

    Hi,
    PS: your SSL is now not valid:
    Screen Shot 2025 08 15 at 7.18.51 AM
    Please try to fix.

    Best regards,
    Mike

    in reply to: Create a bottom to change the language #1488098

    Hi,
    For your footer below 767px where you use a different layout, in your text element you have the globe in a paragraph tag “p” that has the style set to “center”, but the “shortcode-menu”, your language switcher, is in a div below it.
    The two need to be wrapped in a div or the same “p” tag and remove the “center” style on the globe.
    We can not fix this with css, if you can not fix this in the element, please include a admin login so we can help.

    Best regards,
    Mike

Viewing 30 posts - 151 through 180 (of 34,894 total)