Forum Replies Created

Viewing 30 posts - 6,091 through 6,120 (of 67,597 total)
  • Author
    Posts
  • in reply to: Dynamic CSS #1434465

    Hi,

    Thank you for the info.

    But the problem is it not that it generate dynamtic css and it can’t load it?

    The screenshot above shows an error originating from a minified stylesheet within the wp-content > fusion-styles folder, not from the dynamic stylesheet generated by the theme. We may need to access the site in order to properly check the issue. Please clone the site to a staging environment and provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Enfold Front Page Problems #1434464

    Hi,

    Thank you for the inquiry.

    We have temporarily disabled the Enfold > Performance > File Compression settings, but the site continues to load the merged or compressed scripts and stylesheets. This indicates that the server is still attempting to retrieve these resources from the cache. Please deactivate the plugins temporarily and ask your hosting provider to temporarily disable server caching so that we can check the issue further.

    Best regards,
    Ismael

    in reply to: Layerslider inactive in frontend and backend #1434463

    Hey Groeier!,

    Thank you for the inquiry.

    The layer slider is loading correctly when we checked the site, as shown in the screenshot below (private field). We reloaded the page several times. Have you identified the issue?

    Best regards,
    Ismael

    in reply to: Logo bigger #1434462

    Hi,

    Thank you for the update.

    Did you add the code in the Enfold > General Styling > Quick CSS field? The code seems to be working correctly on our end. Please provide the login details in the private field so that we can check the modifications properly.

    Best regards,
    Ismael

    in reply to: Load Google Fonts #1434461

    Hey Antonio,

    Thank you for the inquiry.

    You may need to contact your hosting provider and ask them to install or enable the PHP ZipArchive Extension. If the issue persists after activating the PHP extension, please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Bootstrap from Plugin kills sub page #1434460

    Hi,

    No problem! Let us know if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Sub menu in a bold style for mobile version #1434459

    Hey opificioilgranello,

    Thank you for the inquiry.

    You can add this css code to target the first items in the submenu and adjust their style.

    #av-burger-menu-ul li .sub-menu > .av-width-submenu > a {
        font-weight: 600;
        color: red !important;
    }
    

    Best regards,
    Ismael

    in reply to: Footer Missing / Child Theme Styles Broken #1434458

    Hey ryanchadek,

    Thank you for the inquiry.

    Have you tried temporarily disabling the header.php file in the child theme or updating it using the latest version from the parent theme? The footer relies on some of the code in the header.php file, so you have to make sure that the template file is updated.

    Best regards,
    Ismael

    in reply to: your enfold theme #1434456

    Hey Douglas McRae,

    Thank you for the inquiry.

    1.) Enfold is a premium theme available for purchase on Themeforest.

    // https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990

    2.) The latest version of the theme is 5.6.10. If the automatic update is not working, you may need to update the theme manually via FTP. Please check the documentation below.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    3.) You can update the theme for free once you’ve purchase a license. You may need to contact the previous developer and ask him for the purchase code or the private token.

    // https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Ismael

    in reply to: Column padding on mobile #1434455

    Hi,

    Thank you for the update.

    We’ve found an invalid code in the Quick CSS field and removed it. This code should be added in the functions.php file.

    function ava_remove_title_attr(){
        ?>
        <script>
        jQuery(window).load(function(){
            jQuery('#wrap_all img.avia_image, #wrap_all .avia-gallery-thumb img, #wrap_all .avia-gallery-thumb a').removeAttr('title');
        });
        </script>
        <?php
        }
    add_action('wp_footer', 'ava_remove_title_attr');
    

    We also edited the css a bit and temporarily disabled the Enfold > Performance > File Compression settings. You can enable this option back once you’re done editing the site. Please make sure to do a hard refresh before checking the page.

    Best regards,
    Ismael

    in reply to: Update to 5.6.10 breaks all my widgets in footer #1434454

    Hi,

    Thank you for the update.

    We may need to access the site in order to properly check the issue. Please provide the login details in the private field and make sure that the Appearance > Theme File Editor is accessible.

    // https://developer.wordpress.org/advanced-administration/wordpress/edit-files/#using-the-theme-file-editor-and-plugin-file-editor
    // https://wordpress.org/documentation/article/editing-wp-config-php/#disable-the-plugin-and-theme-editor

    Best regards,
    Ismael

    in reply to: One Click Accessibility plugin #1434414

    Hey envatobunny,

    Thank you for the inquiry.

    Please use this css code instead.

    #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle {
        right: 180px !important;
        width: 40px !important;
    }

    Please toggle the Enfold > Performance > File Compression settings, and purge the Siteground cache or disable it temporarily.

    Best regards,
    Ismael

    in reply to: Burger menu Icon – Breakpoint location #1434413

    Hey Julie,

    Thank you for the inquiry.

    Did you configure the default logo not to display on desktop view? The reason the burger menu is pushed beneath the header is because of the logo container, which receives this style on smaller screens.

    .responsive #top .logo {
        position: static;
        display: table;
        height: 80px !important;
        float: none;
        padding: 0;
        border: none;
        width: 80%;
    }

    To keep the logo hidden on mobile view, you can add this css code.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top .logo {
        display: none;
      }
    }
    
    

    Best regards,
    Ismael

    in reply to: Advanced Custom Fields broken since update #1434412

    Hi,

    Did you install a cache plugin with compression options? You can choose to either keep the default file compression disabled and use the compression options provided by the plugin, or vice versa.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: vertically center logo in header #1434411

    Hi,

    Thank you for the update.

    We made slight adjustments to the css code so that it also takes into account the top position of the logo when the header has shrunk or when scrolling. Please use this updated css code instead.

    .logo img, .logo svg {
      top: 15px;
    }
    
    .header-scrolled .logo img, .header-scrolled .logo svg {
      top: auto;
    }

    Best regards,
    Ismael

    in reply to: Mega menu submenu container with Woocommerce #1434408

    Hi,

    Did you remove the previous css code?

    .html_visible_cart #menu-item-2289 .avia_mega_div {
        opacity: 1 !important;
        display: block !important;
        left: -210px !important;
    }
    

    Please remove the css code above, then add this one to make the mega menu fullwidth when the cart is visible.

    .html_visible_cart #menu-item-2289 .avia_mega_div {
        width: 100vw !important;
    }

    Or post the login details in the private field so that we can test the changes properly.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Hide / Show Section #1434407

    Hey Steve,

    Thank you for the inquiry.

    What do you mean by “Section Window”? Could you please provide a screenshot or an example demonstrating this option in action? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:

    Best regards,
    Ismael

    in reply to: Bootstrap from Plugin kills sub page #1434406

    Hi,

    We have edited the avf_header_setting_filter filter in the functions.php file and made some adjustments to the custom script. The header is now transparent, with the slider displaying below it.

    
    function av_custom_inline_script_slider_banner()
    {
        wp_add_inline_script(
            'jquery',
            "(function($) {
                $(document).ready(function() {
                    $('#av-main-slider-banner').appendTo('.av-slider-banner-container');
                    $('#header').addClass('av_header_transparency');
                });
            })(jQuery);"
        );
    }
    add_action('wp_enqueue_scripts', 'av_custom_inline_script_slider_banner');
    
    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);
    function avf_header_setting_filter_mod($header)
    {
        if ( is_archive() || is_singular('post') ) {
            $header['header_transparency'] = 'header_transparency';
            $header['header_title_bar'] = 'hidden_title_bar';
        }
        return $header;
    }
    
    
    #av-main-slider-banner { display: none !important; opacity: 0; }
    .av-slider-banner-container #av-main-slider-banner { display: block !important; opacity: 1; }
    

    We also added this css code to keep the slider from displaying when it’s not yet appended to the av-main-slider-banner container.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Bootstrap from Plugin kills sub page #1434363

    Hi,

    Thank you for the additional info.

    If you need the header to be transparent on archive and single post pages, please include this code in the functions.php file.

    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);
    function avf_header_setting_filter_mod($header)
    {
        if ( is_archive() || is_singular('post') ) {
            $header['header_transparency'] = 'header_transparency';
        }
        return $header;
    }
    

    Best regards,
    Ismael

    in reply to: less thumbnail columns for gallery on mobile #1434362

    Hey pelgrimrat,

    Thank you for the inquiry.

    Are you referring to the gallery above the footer area? The gallery seems to be responding correctly in mobile view, splitting into two columns instead of six. If you’d like to increase the number of columns, you can try using this css code

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top .avia-gallery.av-lslwymmy-767d1ca16b1f4d9c429a0176d305ae0e .avia-gallery-thumb a {
        width: 33%;
      }
    }

    Best regards,
    Ismael

    in reply to: Need more media query #1434361

    Hey cloud_studio1,

    Thank you for the inquiry.

    Have you tried adjusting the Masonry element’s Styling > Columns > Column count settings? You can select different number of columns for each breakpoint.

    Best regards,
    Ismael

    in reply to: Column padding on mobile #1434360

    Hey st,

    Thank you for the inquiry.

    You may need to adjust or reset the left position of the column element on mobile view. Please try this css code.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .flex_column.av-lsi2hb8k-6aee99cc1e1fcfe1529179ad547236c0 {
        position: relative;
        left: 0;
      }
    }
    

    The default value of the left property is 100px. After the adjustment, it should look like the following screenshot.

    // https://1drv.ms/i/s!AjjTfXSRbKTvgtxXjDgZ042XkpoRAQ?e=IJmlB2

    Best regards,
    Ismael

    in reply to: ENFOLD – Team Member Pga Sidebar #1434359

    Hi,

    Great! Glad to know that this has been resolved. Please feel free to open another thread should have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Menu help #1434358

    Hey Josh,

    Thank you for the inquiry.

    Which button are you referring to? Please provide a screensoht or post the site URL in the private field. You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.

    Best regards,
    Ismael

    in reply to: Dynamic CSS #1434357

    Hi,

    Based on the screenshot, the mime type error is generated from a minified stylesheet inside the wp-content > fusion-styles folder. Did you install another page builder or compression plugin?

    Best regards,
    Ismael

    in reply to: Adress fb and ig buttons in headerline #1434356

    Hi,

    Thank you for the inquiry.

    You may need to use the Widget Area element in the Advanced Layout Builder to display widgets in the content area. If you need to separate the widgets from your content and replicate the default layout of pages with a sidebar, use the Column elements.

    Best regards,
    Ismael

    in reply to: Non-valid Purchase Key for Support? #1434354

    Hey Michael Kormendy,

    Thank you for the inquiry.

    What is the email address that you’ve tried to use to register to the forum, and where did you get the purchase code? The purchase code should have the following format.

    1c389c9f-712c-410e1-1a79-424a26013f2e
    

    Please note that the purchase code is different from the private token. For more info, please check the following documentation.

    // https://kriesi.at/documentation/enfold/theme-registration/#toggle-id-4

    Best regards,
    Ismael

    in reply to: Logo bigger #1434353

    Hi,

    Thank you for the inquiry.

    You can add this css code to increase the maximum width of the logo.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #header .logo img {
        max-width: 200px;
      }
    }

    Default max-width value is 100px. You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect.

    Best regards,
    Ismael

    in reply to: WEBSITE NOT UPDATING!! #1434352

    Hi,

    Thank you for the info.

    We were able to successfully update the “2024 Annual Pence Wealth Luncheon” page without encountering any issues. Did you figure out the problem?

    Best regards,
    Ismael

    in reply to: Portfolio Grid: How to change Mobile Title Font Size #1434351

    Hi,

    Thank you for the update.

    You may need to adjust the breakpoint in the css media query above to target smaller screens. Please try this css code.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top .grid-content h3 {
        font-size: 32px;
        text-align: center;
      }
    }

    Best regards,
    Ismael

Viewing 30 posts - 6,091 through 6,120 (of 67,597 total)