Forum Replies Created

Viewing 30 posts - 241 through 270 (of 33,321 total)
  • Author
    Posts
  • in reply to: Icons disapeared #1469075

    Hi,
    On the homepage the icons are using the default “entypo-fontello” font icons:
    Screen Shot 2024 10 14 at 7.11.40 AM
    but on your linked inner page you seem to be using a custom icon font called “numbers”
    Screen Shot 2024 10 14 at 7.13.18 AM
    Please post your custom icon font zip file here so we can test, perhaps this is not the correct icon font format.

    Best regards,
    Mike

    in reply to: Height horizontal gallery mobile #1469074

    Hi,
    Glad we were able to 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: About Enfold sidebar #1469040

    Hi,
    For the sidebar on product pages see this thread.
    For category pages add your widget to the Shop Overview Page widget
    Screen Shot 2024 10 13 at 3.15.08 PM
    Screen Shot 2024 10 13 at 3.16.22 PM

    Best regards,
    Mike

    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

    in reply to: Open Street Map – Data Hosting #1469034

    Hey Diana,
    The data is hosted on your site and is GDPR Compliance, see this thread.

    Best regards,
    Mike

    in reply to: Enfold tab has issue on mobile #1469031

    Hi,
    It works when I check, try clearing your browser cache following these steps for Safari and note step 4 where you will Clear the History.
    Screen Shot 2024 10 13 at 10.16.59 AM

    Best regards,
    Mike

    Hi,
    Glad we could help, for the Scroll Snap I recommend trying a plugin, this is not a Enfold feature and I have not tested any specific plugins to achieve this.
    If you would like to request this feature the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.

    Best regards,
    Mike

    in reply to: Customize the theme #1469023

    Hi,
    Do you mean copy layouts from our other demos into one new layout for your site? Or do you mean create a new layout based on some site that you have seen, ie: not a Enfold demo?
    Enfold is typically very customizable but sometimes it can take some trial an error with all the different setting to get an exact look.
    While we are always able to help with modifications, we are limited to building out a whole site based on some other site you found on the internet, for this we recommend Codeable

    Best regards,
    Mike

    Hey Stefan,
    Please note that when you first land on the page your header is transparent, so the header doesn’t calculate into the color section 100% height, but after you click the down arrow or scroll the header is visible so the height of the header counts.
    I changed the following color sections to 85% and now all of the down arrows show, you can try other settings link 87% if you like to get the exact view to wish.

    Best regards,
    Mike

    in reply to: Error after upgrading to Enfold 6.0.2 #1469021

    Hi,
    This looks fine, glade you found a solution, shal1 we close this thread then?

    Best regards,
    Mike

    in reply to: Enfold tab has issue on mobile #1469020

    Hi,
    Your screenshot is still password protected, please try a different Screenshot service
    also provide a admin login so we can check the backend.
    It looks like you are using some custom css for the first table:

    @media only screen and (max-width: 767px) {
        #top #after_section_1 .avia-table-1 th, 
        #top #after_section_1 .avia-table-1 td {
            display: table-cell;
            min-width: 50%;
            width: 50%;
            padding-left: 17px;
            padding-right: 17px;
            border-right: 1px solid;
        }
    }

    Note the class avia-table-1 so this doesn’t change all of the tables, try this css instead:

    @media only screen and (max-width: 767px) {
        #top #after_section_1 .avia_responsive_table th, 
        #top #after_section_1 .avia_responsive_table td {
            display: table-cell;
            min-width: 50%;
            width: 50%;
            padding-left: 17px;
            padding-right: 17px;
            border-right: 1px solid;
        }
    }

    Best regards,
    Mike

    Hi,
    I don’t believe that there is a way to do that.

    Best regards,
    Mike

    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: Active page bold – not parent or sub page #1469004

    Hi,
    When I test Guenni007’s css it works correctly, thanks Guenni007.
    Screen Shot 2024 10 12 at 5.51.12 PM

    Best regards,
    Mike

    in reply to: full width slider caption doesn’t fit on mobile #1469002

    Hi,
    Thanks for the link to your page, when I check I see this:
    Screen Shot 2024 10 12 at 5.18.42 PM
    I recommend this css:

    @media only screen and (max-width: 479px) { 
    	#top.home #wrap_all #full_slider_1 .av-slideshow-caption .avia-caption-content p {
    		font-size: 12px;
    	}
    	#top.home #wrap_all #full_slider_1 .avia-caption-title {
    		font-size: 15px;
    	}
    }

    or this result for small screens (320px):
    Screen Shot 2024 10 12 at 5.36.33 PM
    and this for normal screens (425px)
    Screen Shot 2024 10 12 at 5.38.51 PM
    Please adjust to suit

    Best regards,
    Mike

    in reply to: Blog Layout #1469001

    Hey Nick_Skehan,
    Please check the Enfold Theme Options ▸ Blog Layout ▸ Blog Styling each option has a different layout and some are only available for certain options. Please choose the one that is closest to what you are looking for, we can help with javascript & css to make any final adjustments.
    Please link to your page so we can make these final adjustments viewing your site.

    Best regards,
    Mike

    Hi,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    document.addEventListener("DOMContentLoaded", function() {
        var footer = document.getElementById('footer');
        var afterSlideshow = document.getElementsByClassName('el_after_av_slideshow');
        if (footer) {
            var newDivFooter = document.createElement('div');
            newDivFooter.className = 'custom-header-background-footer';
            footer.appendChild(newDivFooter);
        }
        if (afterSlideshow.length > 0) {
            var newDivSlideshow = document.createElement('div');
            newDivSlideshow.className = 'custom-header-background-bottom';
            afterSlideshow[0].appendChild(newDivSlideshow); 
        }
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    Then add this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .custom-header-background-footer {
        background-image: url(/wp-content/uploads/2024/09/top_no_fade.png);
        background-repeat: repeat-x;
        background-position: bottom center;
        background-size: auto;
        height: 50px;
        width: 100%;
        position: absolute;
        top: -50px;
    }
    .custom-header-background-bottom {
        background-image: url(/wp-content/uploads/2024/09/top_no_fade.png);
        background-repeat: repeat-x;
        background-position: bottom center;
        background-size: auto;
        height: 50px;
        width: 109%;
        position: absolute;
        top: 25px;
        left: -5%;
        transform: rotate(180deg);
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Website accessibility #1468998

    Hey Meetx,
    Thank you for your patience,
    For the “scroll to top button” is set to “aria-hidden=true” as it is not critical to understanding the page’s purpose or functionality, WAI-ARIA says this is correct to prevent the screen reader from announcing its presence or content. This doesn’t prevent tabbing.
    Nonetheless if you want to change this and add a label try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    const button = document.getElementById('scroll-top-link');
    button.setAttribute( "aria-hidden", "false"  );
    button.setAttribute( "aria-label", "label"  );
     </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    Please adjust the “label” to whatever you want it to say.
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Masonry Gallery #1468997

    Hi,
    To remove the “grey veil on the images before the mouse over” try this css:

    .responsive #top .av-hover-overlay-active .av-masonry-image-container {
        opacity: 1;
    }
    

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    I’m not sure what is the issue with your multiple FTP users or your permissions, I can not reproduce this on my install. Please try updating this way instead:
    To update your version of Enfold 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: Enfold tab has issue on mobile #1468995

    Hi,
    Thanks for the link to your site, but when I test the price tables they seem fine on mobile:
    Screen Shot 2024 10 12 at 12.54.20 PM
    I was not able to view your screenshot because it required a login, please try posting a direct link to your screenshot.
    To add a screenshot please try using an Screenshot service and pasting the image URL in your post.

    Best regards,
    Mike

    Hi,
    When I check your page the the previous events link shows:
    Screen Shot 2024 10 12 at 12.30.09 PM
    I tested your above css and it doesn’t hide it.

    Best regards,
    Mike

    in reply to: Icons disapeared #1468993

    Hey whdsolutions,
    It looks like you are using a custom icon font “numbers” but the font is not loaded, instead ‘static’,Helvetica,Arial,sans-serif is loaded.
    Try using the built-in icon font and see if that works, and then reinstall your custom icon font and see if that helps.

    Best regards,
    Mike

    in reply to: Menu Rollover color change #1468992

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

    #top #header.header_color .av-main-nav > li#menu-item-11678 > a:hover,
    #top #header.header_color .av-main-nav > li#menu-item-11678 > a:focus,
    #top #header.header_color .av-main-nav > li#menu-item-11678 > a:hover .avia-menu-text,
    #top #header.header_color .av-main-nav > li#menu-item-11678 > a:focus .avia-menu-text,
    #top #header.header_color .av-main-nav > li#menu-item-11678 > a:hover .avia-menu-subtext,
    #top #header.header_color .av-main-nav > li#menu-item-11678 > a:focus .avia-menu-subtext,
    #top #header.header_color.av_header_transparency .av-main-nav > li#menu-item-11678 > a:hover,
    #top #header.header_color.av_header_transparency .av-main-nav > li#menu-item-11678 > a:focus,
    #top #header.header_color.av_header_transparency .av-main-nav > li#menu-item-11678 > a:hover .avia-menu-text,
    #top #header.header_color.av_header_transparency .av-main-nav > li#menu-item-11678 > a:focus .avia-menu-text,
    #top #header.header_color.av_header_transparency .av-main-nav > li#menu-item-11678 > a:hover .avia-menu-subtext,
    #top #header.header_color.av_header_transparency .av-main-nav > li#menu-item-11678 > a:focus .avia-menu-subtext {
    	color: green;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Can’t Control Spacing after a block of moving boxes #1468991

    Hey MysticMimi,
    Thanks for the link to your site, when you use the negative top margin to move columns over an element, you should also use a negative bottom margin to bring the rest of the page up to not have a space:
    Screen Shot 2024 10 12 at 11.09.13 AM
    I adjusted this for you, please check.

    Best regards,
    Mike

    Hi,
    Do you mean this:
    Screen Shot 2024 10 12 at 10.57.55 AM
    What do you want to see instead?

    Best regards,
    Mike

    in reply to: Changing the “Default Sorting” Dropdown in WooCommerce #1468989

    Hi,
    The code is not CSS, it is PHP. If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    use wpcode php snippet and activate
    and ensure that it is activated, then add the code and save.

    Best regards,
    Mike

    in reply to: Mega menu (2) #1468988

    Hi,
    Sorry I thought you were working on a new site, can you add the image in the mega menu so we can help adjust it with css.

    Best regards,
    Mike

    in reply to: Height horizontal gallery mobile #1468986

    Hi,
    I checked your horizontal gallery on my Android phone and in a Chrome Dev simulation, but in both cases the image is not cropped, when I check with Safari in Responsive Design Mode, I found an issue with Safari so I added this css to your site and seems to solve.

    @media only screen and (max-width: 767px) { 
    .responsive.avia-safari #top .av-horizontal-gallery-img {
    	transform: none;
    }
    }

    Please clear your cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.

    Best regards,
    Mike

    Hi,
    I tried enabling “Delay Java Script” and changed your mobile menu to “Display submenu items on click” and tested in Safari with Responsive Design Mode to emulate a iPhone and in Chrome as a mobile device on a Mac but found no issues after more than six clicks.
    I see that your “Excluded JavaScript Files” has one file “menu.js” so perhaps you have not cleared your iPhone cache. Please note that testing with iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.
    But note that the recommended “Excluded JavaScript Files” are more than your one file.

    /jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js
    /jquery-migrate(.min)?.js
    /dynamic_avia/avia-footer-scripts-(.*).js
    var avia_is_mobile
    /enfold/js/avia.js
    /enfold/js/shortcodes.js
    /enfold/config-templatebuilder/avia-shortcodes/
    /enfold/js/avia-compat.js

    Also note that the plugin offers a “One-click exclusions” option for the theme:
    Screen Shot 2024 10 12 at 9.30.17 AM
    but I’m not able to reproduce the error on your site now, so I assume that it is a cache issue on your device, please check.

    Best regards,
    Mike

Viewing 30 posts - 241 through 270 (of 33,321 total)