Viewing 30 results - 391 through 420 (of 1,181 total)
  • Author
    Search Results
  • #1057791
    check-t
    Participant

    Hi,

    Our problem is, that the customers don’t realize, that there’s hidden content on flip behind the icons. So we have to REALLY show them by starting the animation as an example without waiting for a random mouse-over. Sad but true… :)

    Ss there a way to make the FlipBox flip once, when the content appears on scroll automatically?

    Thank you so much and kind regards
    Tobias

    #1055707
    SvavarJakobsson
    Participant

    I will try to explain this problem the best as I can, sorry if this turns out to be a plugin issue.
    I don’t know where the problem resides, I have already contacted the support for a plugin called “Fancy Product Designer” (hereafter FPD) they assured me the problem is not at their end and that it is a theme issue. Therefore I renewed my Enfold support in hopes of sorting this little problem out.

    I am running FPD on the Enfold theme with woocommerce. I have made some quick css changes to Enfold that allows me to remove the “show details” button in the product catalog and have only”add to cart” visible.

    The css is as following:

    #top .avia_cart_buttons .show_details_button {
    display: none !important;
    }
    #top .avia_cart_buttons .add_to_cart_button {
    width: 100% !important;
    }

    #top .avia_cart_buttons .button-mini-delimiter {
    display: none !important;
    }

    That works for every product except the ones that are using FPD

    The provided url will take you to the front page, if you scroll down a little you will see “vinsælar vörur” below there are a couple of products visible, you can see the ones that are not a FPD product have the add to cart button centered, the FPD products “add to cart (setja í körfu)” is alligned to the left.

    FPD Support suggested I should add the following code via quick css:
    fpd-catalog-customize{margin: 0 auto;}
    #top .avia_cart_buttons .button{
    float: unset !important;
    }

    that did not work, I then gave their support agent an admin user to the site. He checked it out and replied:
    Sorry about the late reply. The CSS I’ve sent basically works. The problem only comes up once the products are switched – which I guess is done through your theme via js somehow? Not really anything we can do about that at, sorry. You could try your themes support.

    So I’m here now, knocking on your door.
    Have a good weekend
    -Svavar

    • This topic was modified 6 years, 12 months ago by SvavarJakobsson. Reason: solved it myself
    #1055370

    Hi Mike,

    Thank you so much for the help. I’m almost done with the site and you’ve been amazing throughout the process. Can’t thank you enough, you guys do an amazing god damn job here. No wonder Enfold is at the top of the theme game.

    Quick question regarding accordions. I’ve noticed a bit of a discrepancy between what happens on mobile and on desktop. Here is a test page that I’m using: http://www.bonjiglass.com/4004-2/#toggle-id-3 So on mobile, every time you click on a section, the accordion automatically scrolls to the top of the section, so you can see the entire list within. On desktop, it sort of does it with the second section, but when you then click on the third section, the first thing you see is “Spanish rice and beans”, which is the third item on the menu, not the first. Is there a way to make the accordion jump to the top of the section every time you click on the section (include the title of the section so that people know what they are looking at?).

    Thanks,
    -D

    #1055322
    compudean
    Participant

    Hi,

    Is there an easy way to get the Enfold social icons into the Event page under Event description automatically (without using another plugin)? Currently I am putting them in manually using shortcode. If I use the TEC Display option of Add HTML after event content it appears on every type of event page and across the entire bottom of page. I would like it to appear just under the event description

    For example, scroll down at https://www.hikingwithdean.com/event/wildwood-park-paradise-falls-santa-rosa-valley-loop/

    [I tried playing with the templates in Enfold’s TEC configuration folder but I can’t even get some added plain text to appear]

    #1053565

    Topic: Submenu

    in forum Enfold
    vin8tan
    Participant

    Hi, I have added some custom code to my website so that the submenu is scrollable with no scroll bar, remaining functional in desktop mode. The codes, which was written with your help worked for a long time, until recently. I’ve deployed the same settings on both my websites, it’s working one, but not the other.

    @media only screen and (max-width: 580px) {
    .av-submenu-container ul {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    z-index:10000;
    }}

    ::-webkit-scrollbar {
    display: none;
    }

    @media only screen and (max-width: 767px) {
    .responsive #scroll-top-link {
    display: block !important;
    left: 20px;
    bottom:20px;
    right: auto;
    z-index:10000;
    }}

    • This topic was modified 7 years ago by vin8tan.
    #1047090

    In reply to: Full Width SubMenu

    Hi,

    I see. You can use this script to automatically close the menu on scroll.

    add_action('wp_footer', 'ava_custom_close_menu_on_scroll');
    function ava_custom_close_menu_on_scroll(){
    	?>
    	<script type="text/javascript">
            (function() {
                const sm = document.querySelector('.av-submenu-container');
                const sn = sm.querySelector('.av-subnav-menu')
                const st = sm.querySelector('.mobile_menu_toggle');
                const eventClick = new Event('click');
    
                if(sm) {
                    document.addEventListener( 'scroll', (event) => {
                        if( sn.classList.contains('av-open-submenu') ) {
                            st.dispatchEvent(eventClick);
                        }
                    });
                }
            })();
    	</script>
    	<?php
    }
    

    Best regards,
    Ismael

    #1045501
    CincinnatiWebTec
    Participant

    Hello,
    We just upgraded to WP 5.0.1 and Enfold 4.5.1. Now when dragging elements in the Avia Builder, it does not auto-scroll the Avia Builder window down if you move the item towards the bottom of the window. We’ve duplicated this on all of our other company websites as well that are running WP 5.0 and Enfold 4.5.1. Is this a bug? Or something we are doing incorrectly on our end. It’s just really annoying since our mouses don’t have scroll wheels here at the office. So we have to slowly drag and drop the item multiple times until it gets down to where we want it.
    Thanks,
    Chris

    #1043576

    Hey Stefano,

    Thank you for using Enfold.

    You can use the “Description” element for the text. Use this css code to limit its height and hide the checkbox.

    .av-form-text {
        height: 300px;
        overflow: auto;
        width: 100%;
    }
    
    #element_avia_3_1 { opacity: 0; }

    You can then add this script to enable the checkbox on scroll.

    add_action('wp_footer', 'avf_enable_checkbox_scroll');
    function avf_enable_checkbox_scroll(){
    ?>
    <script type="text/javascript">
    (function() {
    	const et = document.querySelector('.av-form-text');
    	if(et) {
    		et.addEventListener( 'scroll', (event) => {
    			var a = et.scrollTop;
    			var b = et.scrollHeight - et.clientHeight;
    			var c = a / b;
    			
    			if( c >= 0.80 ) {
    				document.getElementById('element_avia_3_1').style.opacity= 1;
    			} 
    		});
    	}
    })();
    </script>
    <?php
    }

    Best regards,
    Ismael

    #1041813

    Just to add, both technically work. The problem is the page automatically scrolls down to the tab section without clicking on anything. I’ve reset cache too. If you scroll back up and then click the tab, it scrolls down as it should with the new script. Just need to stop it from doing it automatically on the page load.

    #1041685

    In reply to: Tiny Font in Tables

    Hi mooshonov,

    Try using this, let us know if this helps.

    .avia-button,
    .single_add_to_cart_button,
    .woocommerce-page .button {
        font-size: 18px !important;
    }
    
    #sub_menu1 {
        z-index: 301;
    }
    
    .avia_pricing_minimal td,
    .avia_pricing_minimal th {
        font-size: 20px;
    }
      
    #scroll-top-link {
        right: auto !important;
        left: 50px!important;
    }
    
    #top div .product_on_sale .inner_product_header {
        padding-left: 47px !important;
        padding-right: 15px !important;
    }
      
    #top #main .single-product-main-image .onsale {
        right: auto;
    }
      
    .av_header_transparency #header_main .main_menu ul:first-child > li > a {
        color: #fff;
    }
      
    .page-id-8105 .entry-content-wrapper select option {
        background-color: black;
    }
    
    span.minitext {
        display: none !important;
    }
        
    #top .price span {
        font-size:26px !important;
    }
    
    .woocommerce td {
        font-size: 16px;
    }
    
    h2.woocommerce-loop-product__title {
        font-size:22px !important;
    }
      
    @media only screen and (max-width: 767px) {
        .responsive #top .logo{
            width: 100% !important;
        }
      
        .responsive #top .logo a {
            float: left;
            padding-right: 100px;
            padding-top: 0;
        }
    }
      
    @media only screen and (min-width: 480px) and (max-width: 990px) {
        #top .no_margin.av_two_fifth {
            padding: 20px 30px !important; 
        }
    }
    
    @media only screen and (max-width: 479px) {
        #top .no_margin.av_two_fifth,
        #top .no_margin.av_three_fifth {
            width: 100%;
        }
    
        #top .no_margin.av_two_fifth {
            padding: 30px !important;
        }
    
        .flex_cell {
            display: block;
        }
    }

    Best regards,
    Nikko

    #1040935

    In reply to: Tiny Font in Tables

    This reply has been marked as private.
    #1039986
    This reply has been marked as private.
    #1036028
    marco3253
    Participant

    dear support,

    i need to make a link to a page with an anchor link, i know this can be done with the color section, but i cannot use color section in this page, so i made a search on this forum and i found this type of solution:

    <div id=”my-anchor”>
    my content
    </div>

    then the link to the page is http://www.mywebsite.com/mypage#my-anchor/

    ok this is perfect, but when i clink on the link, it takes me to the destination page without scrolling down, i need to scroll with the mouse just one pixel and immediately the page scrolls down to the anchor.
    If i made no action, i see the page as if i clicked on http://www.mywebsite.com/mypage/

    is there a solution to link to the page and automatically scrolls down without any action of the user? (a soft scroll would be appreciated)

    thank you.
    Marco

    #1033006

    In reply to: Align #top Icon

    Hi,

    Try this instead:

    #scroll-top-link {
        right: auto !important;
        left: 50px!important;
    }

    If we can’t see the actual results you are getting then it will be difficult to help you out.

    Best regards,
    Rikard

    #1032904

    In reply to: Align #top Icon

    Hi,
    Adding the code in Quick CSS under Enfold->General Styling.

    #scroll-top-link {
        right: auto;
        left: 50px;
    !important;
    }
    #1032483

    In reply to: Align #top Icon

    Hey mooshonov,

    Please try the following in Quick CSS under Enfold->General Styling:

    #scroll-top-link {
        right: auto;
        left: 50px;
    }

    Best regards,
    Rikard

    Hi,

    The breaking point is still set to the first option when I checked. Did you test it? Is it OK if we set the cell’s breaking point when the screen width is equal or less than 1366px? That is the maximum screen width of an iPad Pro.

    @media only screen and (max-width: 1366px) {
    .responsive #top #wrap_all .av-flex-cells .no_margin {
        display: block;
        margin: 0;
        height: auto !important;
        overflow: hidden;
        padding-left: 8% !important;
        padding-right: 8% !important;
    }
    }

    We can also disable the background’s fixed or parallax effect because that is not fully supported on iOS devices.

    @media only screen and (max-width: 1366px) {
    #top .flex_cell {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }
    }

    Best regards,
    Ismael

    #1031092

    Hi,

    The theme is using the waypoint script to trigger animations when the elements come into view. Maybe, you can utilize that script to auto play the video.

    // http://imakewebthings.com/waypoints/

    Example: https://kriesi.at/support/topic/onepager-change-h2-title-color-on-focus-when-scrolling/#post-995873

    Best regards,
    Ismael

    #1030842

    This is what I get when i try to upload the latest version

    Unpacking the package…

    Upgrading your theme…

    No backup of old version of theme created. Backup option disabled in settings.

    Removing the old version of the theme…

    The update cannot be installed because we will be unable to copy some files. This is usually due to inconsistent file permissions. config-events-calendar/views/single-event-no-mobile.php, config-layerslider/LayerSlider/classes/class.ls.config.php, config-layerslider/LayerSlider/classes/class.ls.popups.php, config-layerslider/LayerSlider/includes/slider_markup_export.php, config-layerslider/LayerSlider/static/admin/css/addons.css, config-layerslider/LayerSlider/static/admin/css/index.php, config-layerslider/LayerSlider/static/admin/css/plugin_settings.css, config-layerslider/LayerSlider/static/admin/img/ao-bm-blend.jpg, config-layerslider/LayerSlider/static/admin/img/ao-bm-text.png, config-layerslider/LayerSlider/static/admin/img/ao-bm.jpg, config-layerslider/LayerSlider/static/admin/img/ao-fil.jpg, config-layerslider/LayerSlider/static/admin/img/ao-ori.jpg, config-layerslider/LayerSlider/static/admin/img/ao-pbs.jpg, config-layerslider/LayerSlider/static/admin/img/ao-pop.jpg, config-layerslider/LayerSlider/static/admin/img/ao-rev.jpg, config-layerslider/LayerSlider/static/admin/img/ao-tpl.jpg, config-layerslider/LayerSlider/static/admin/img/index.php, config-layerslider/LayerSlider/static/admin/img/layout-popup.png, config-layerslider/LayerSlider/static/admin/img/popup-example-bg.jpg, config-layerslider/LayerSlider/static/admin/img/popup-example-slidy.png, config-layerslider/LayerSlider/static/admin/js/index.php, config-layerslider/LayerSlider/static/admin/js/ls-admin-addons.js, config-layerslider/LayerSlider/static/admin/js/ls-admin-settings.js, config-layerslider/LayerSlider/static/admin/media/index.php, config-layerslider/LayerSlider/static/admin/scss/addons.scss, config-layerslider/LayerSlider/static/admin/scss/index.php, config-layerslider/LayerSlider/static/admin/scss/plugin_settings.scss, config-layerslider/LayerSlider/static/admin/index.php, config-layerslider/LayerSlider/static/air-datepicker/i18n/index.php, config-layerslider/LayerSlider/static/air-datepicker/index.php, config-layerslider/LayerSlider/static/codemirror/addon/comment/index.php, config-layerslider/LayerSlider/static/codemirror/addon/dialog/index.php, config-layerslider/LayerSlider/static/codemirror/addon/display/index.php, config-layerslider/LayerSlider/static/codemirror/addon/edit/index.php, config-layerslider/LayerSlider/static/codemirror/addon/fold/index.php, config-layerslider/LayerSlider/static/codemirror/addon/hint/index.php, config-layerslider/LayerSlider/static/codemirror/addon/lint/index.php, config-layerslider/LayerSlider/static/codemirror/addon/merge/index.php, config-layerslider/LayerSlider/static/codemirror/addon/mode/index.php, config-layerslider/LayerSlider/static/codemirror/addon/runmode/index.php, config-layerslider/LayerSlider/static/codemirror/addon/scroll/index.php, config-layerslider/LayerSlider/static/codemirror/addon/search/index.php, config-layerslider/LayerSlider/static/codemirror/addon/selection/index.php, config-layerslider/LayerSlider/static/codemirror/addon/tern/index.php, config-layerslider/LayerSlider/static/codemirror/addon/wrap/index.php, config-layerslider/LayerSlider/static/codemirror/addon/index.php, config-layerslider/LayerSlider/static/codemirror/keymap/index.php, config-layerslider/LayerSlider/static/codemirror/lib/index.php, config-layerslider/LayerSlider/static/codemirror/mode/css/index.php, config-layerslider/LayerSlider/static/codemirror/mode/htmlembedded/index.php, config-layerslider/LayerSlider/static/codemirror/mode/htmlmixed/index.php, config-layerslider/LayerSlider/static/codemirror/mode/javascript/index.php, config-layerslider/LayerSlider/static/codemirror/mode/php/index.php, config-layerslider/LayerSlider/static/codemirror/mode/sass/index.php, config-layerslider/LayerSlider/static/codemirror/mode/sql/index.php, config-layerslider/LayerSlider/static/codemirror/mode/xml/index.php, config-layerslider/LayerSlider/static/codemirror/mode/index.php, config-layerslider/LayerSlider/static/codemirror/theme/index.php, config-layerslider/LayerSlider/static/codemirror/index.php, config-layerslider/LayerSlider/static/dashicons/index.php, config-layerslider/LayerSlider/static/layerslider/css/index.php, config-layerslider/LayerSlider/static/layerslider/js/index.php, config-layerslider/LayerSlider/static/layerslider/plugins/debug/index.php, config-layerslider/LayerSlider/static/layerslider/plugins/origami/index.php, config-layerslider/LayerSlider/static/layerslider/plugins/timeline/index.php, config-layerslider/LayerSlider/static/layerslider/plugins/index.php, config-layerslider/LayerSlider/static/layerslider/plugins/popup/layerslider.popup.css, config-layerslider/LayerSlider/static/layerslider/plugins/popup/index.php, config-layerslider/LayerSlider/static/layerslider/plugins/popup/layerslider.popup.js, config-layerslider/LayerSlider/static/layerslider/skins/borderlessdark/index.php, config-layerslider/LayerSlider/static/layerslider/skins/borderlessdark3d/index.php, config-layerslider/LayerSlider/static/layerslider/skins/borderlesslight/index.php, config-layerslider/LayerSlider/static/layerslider/skins/borderlesslight3d/index.php, config-layerslider/LayerSlider/static/layerslider/skins/carousel/index.php, config-layerslider/LayerSlider/static/layerslider/skins/darkskin/index.php, config-layerslider/LayerSlider/static/layerslider/skins/defaultskin/index.php, config-layerslider/LayerSlider/static/layerslider/skins/fullwidth/index.php, config-layerslider/LayerSlider/static/layerslider/skins/fullwidthdark/index.php, config-layerslider/LayerSlider/static/layerslider/skins/glass/index.php, config-layerslider/LayerSlider/static/layerslider/skins/lightskin/index.php, config-layerslider/LayerSlider/static/layerslider/skins/minimal/index.php, config-layerslider/LayerSlider/static/layerslider/skins/noskin/index.php, config-layerslider/LayerSlider/static/layerslider/skins/numbers/index.php, config-layerslider/LayerSlider/static/layerslider/skins/outline/index.php, config-layerslider/LayerSlider/static/layerslider/skins/roundedflat/index.php, config-layerslider/LayerSlider/static/layerslider/skins/v5/index.php, config-layerslider/LayerSlider/static/layerslider/skins/v5/skin-min.css, config-layerslider/LayerSlider/static/layerslider/skins/v6/index.php, config-layerslider/LayerSlider/static/layerslider/skins/index.php, config-layerslider/LayerSlider/static/layerslider/skins/photogallery/index.php, config-layerslider/LayerSlider/static/layerslider/skins/photogallery/info.json, config-layerslider/LayerSlider/static/layerslider/skins/photogallery/loading.gif, config-layerslider/LayerSlider/static/layerslider/skins/photogallery/nothumb.png, config-layerslider/LayerSlider/static/layerslider/skins/photogallery/skin.css, config-layerslider/LayerSlider/static/layerslider/index.php, config-layerslider/LayerSlider/static/minicolors/index.php, config-layerslider/LayerSlider/static/public/index.php, config-layerslider/LayerSlider/static/shuffle/index.php, config-layerslider/LayerSlider/static/index.php, config-layerslider/LayerSlider/static/dindent/Indenter.php, config-layerslider/LayerSlider/static/dindent/index.php, config-layerslider/LayerSlider/static/dindent/Exception/index.php, config-layerslider/LayerSlider/static/dindent/Exception/DindentException.php, config-layerslider/LayerSlider/static/dindent/Exception/InvalidArgumentException.php, config-layerslider/LayerSlider/static/dindent/Exception/RuntimeException.php, config-layerslider/LayerSlider/static/font-awesome/index.php, config-layerslider/LayerSlider/static/font-awesome/css/font-awesome.min.css, config-layerslider/LayerSlider/static/font-awesome/css/font-awesome.css, config-layerslider/LayerSlider/static/font-awesome/css/index.php, config-layerslider/LayerSlider/static/font-awesome/fonts/fontawesome-webfont.eot, config-layerslider/LayerSlider/static/font-awesome/fonts/fontawesome-webfont.svg, config-layerslider/LayerSlider/static/font-awesome/fonts/fontawesome-webfont.ttf, config-layerslider/LayerSlider/static/font-awesome/fonts/fontawesome-webfont.woff, config-layerslider/LayerSlider/static/font-awesome/fonts/fontawesome-webfont.woff2, config-layerslider/LayerSlider/static/font-awesome/fonts/FontAwesome.otf, config-layerslider/LayerSlider/static/font-awesome/fonts/index.php, config-layerslider/LayerSlider/static/html2canvas/html2canvas.min.js, config-layerslider/LayerSlider/templates/tmpl-addons.php, config-layerslider/LayerSlider/templates/tmpl-button-presets.php, config-layerslider/LayerSlider/templates/tmpl-import-layer.php, config-layerslider/LayerSlider/templates/tmpl-import-slide.php, config-layerslider/LayerSlider/templates/tmpl-insert-icons-modal.php, config-layerslider/LayerSlider/templates/tmpl-insert-media-modal.php, config-layerslider/LayerSlider/templates/tmpl-popup-example-slider.php, config-layerslider/LayerSlider/templates/tmpl-popup-presets-window.php, config-layerslider/LayerSlider/templates/tmpl-post-chooser.php, config-layerslider/LayerSlider/templates/tmpl-preview-context-menu.php, config-layerslider/LayerSlider/templates/tmpl-slide-tab.php, config-layerslider/LayerSlider/templates/html-export/ls-instructions.png, config-layerslider/LayerSlider/templates/html-export/INSTRUCTIONS.html, config-layerslider/LayerSlider/templates/html-export/template.html, config-layerslider/LayerSlider/views/addons.php, config-layerslider/LayerSlider/views/css_editor.php, config-layerslider/LayerSlider/views/settings.php, config-templatebuilder/avia-shortcodes/.DS_Store, config-templatebuilder/avia-shortcodes/audio-player/audio-player.js, config-templatebuilder/avia-shortcodes/audio-player/audio-player.css, config-templatebuilder/avia-shortcodes/audio-player/audio-player.php, config-templatebuilder/avia-shortcodes/blog/blog.php, config-templatebuilder/avia-shortcodes/blog/blog.css, config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php, config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.css, config-templatebuilder/avia-shortcodes/buttons/buttons.php, config-templatebuilder/avia-shortcodes/buttons/buttons.css, config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php, config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.css, config-templatebuilder/avia-shortcodes/catalogue/catalogue.php, config-templatebuilder/avia-shortcodes/catalogue/catalogue.css, config-templatebuilder/avia-shortcodes/comments/comments.php, config-templatebuilder/avia-shortcodes/comments/comments.css, config-templatebuilder/avia-shortcodes/contact/contact.js, config-templatebuilder/avia-shortcodes/contact/contact.css, config-templatebuilder/avia-shortcodes/contact/contact.php, config-templatebuilder/avia-shortcodes/contentslider/contentslider.php, config-templatebuilder/avia-shortcodes/contentslider/contentslider.css, config-templatebuilder/avia-shortcodes/countdown/countdown.js, config-templatebuilder/avia-shortcodes/countdown/countdown.css, config-templatebuilder/avia-shortcodes/countdown/countdown.php, config-templatebuilder/avia-shortcodes/events_countdown/events_countdown.php, config-templatebuilder/avia-shortcodes/events_upcoming/events_upcoming.css, config-templatebuilder/avia-shortcodes/events_upcoming/events_upcoming.php, config-templatebuilder/avia-shortcodes/gallery/gallery.js, config-templatebuilder/avia-shortcodes/gallery/gallery.css, config-templatebuilder/avia-shortcodes/gallery/gallery.php, config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.js, config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.css, config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.php, config-templatebuilder/avia-shortcodes/google_maps/google_maps.php, config-templatebuilder/avia-shortcodes/google_maps/google_maps.css, config-templatebuilder/avia-shortcodes/grid_row/grid_row.css, config-templatebuilder/avia-shortcodes/grid_row/cell.php, config-templatebuilder/avia-shortcodes/grid_row/grid_row.php, config-templatebuilder/avia-shortcodes/heading/heading.php, config-templatebuilder/avia-shortcodes/heading/heading.css, config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.js, config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.css, config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.php, config-templatebuilder/avia-shortcodes/hr/hr.php, config-templatebuilder/avia-shortcodes/hr/hr.css, config-templatebuilder/avia-shortcodes/icon/icon.php, config-templatebuilder/avia-shortcodes/icon/icon.css, config-templatebuilder/avia-shortcodes/iconbox/iconbox.php, config-templatebuilder/avia-shortcodes/iconbox/iconbox.css, config-templatebuilder/avia-shortcodes/icongrid/icongrid.js, config-templatebuilder/avia-shortcodes/icongrid/icongrid.css, config-templatebuilder/avia-shortcodes/icongrid/icongrid.php, config-templatebuilder/avia-shortcodes/iconlist/iconlist.js, config-templatebuilder/avia-shortcodes/iconlist/iconlist.css, config-templatebuilder/avia-shortcodes/iconlist/iconlist.php, config-templatebuilder/avia-shortcodes/image/image.php, config-templatebuilder/avia-shortcodes/image/image.css, config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.js, config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.css, config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.php, config-templatebuilder/avia-shortcodes/logoslider/logoslider.php, config-templatebuilder/avia-shortcodes/magazine/magazine.css, config-templatebuilder/avia-shortcodes/magazine/magazine.js, config-templatebuilder/avia-shortcodes/magazine/magazine.php, config-templatebuilder/avia-shortcodes/mailchimp/mailchimp.php, config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.css, config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.js, config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.php, config-templatebuilder/avia-shortcodes/masonry_gallery/masonry_gallery.php, config-templatebuilder/avia-shortcodes/masonry_gallery/.DS_Store, config-templatebuilder/avia-shortcodes/menu/menu.js, config-templatebuilder/avia-shortcodes/menu/menu.css, config-templatebuilder/avia-shortcodes/menu/menu.php, config-templatebuilder/avia-shortcodes/notification/notification.js, config-templatebuilder/avia-shortcodes/notification/notification.css, config-templatebuilder/avia-shortcodes/notification/notification.php, config-templatebuilder/avia-shortcodes/numbers/numbers.js, config-templatebuilder/avia-shortcodes/numbers/numbers.css, config-templatebuilder/avia-shortcodes/numbers/numbers.php, config-templatebuilder/avia-shortcodes/portfolio/portfolio.css, config-templatebuilder/avia-shortcodes/portfolio/isotope.js, config-templatebuilder/avia-shortcodes/portfolio/portfolio.js, config-templatebuilder/avia-shortcodes/portfolio/portfolio.php, config-templatebuilder/avia-shortcodes/postslider/postslider.php, config-templatebuilder/avia-shortcodes/postslider/postslider.css, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_info.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_button.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_meta.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_price.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_review.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_tabs.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_upsells.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippets.php, config-templatebuilder/avia-shortcodes/productslider/productslider.php, config-templatebuilder/avia-shortcodes/progressbar/progressbar.css, config-templatebuilder/avia-shortcodes/progressbar/progressbar.js, config-templatebuilder/avia-shortcodes/progressbar/progressbar.php, config-templatebuilder/avia-shortcodes/promobox/promobox.php, config-templatebuilder/avia-shortcodes/promobox/promobox.css, config-templatebuilder/avia-shortcodes/search/search.php, config-templatebuilder/avia-shortcodes/search/search.css, config-templatebuilder/avia-shortcodes/slideshow/slideshow.css, config-templatebuilder/avia-shortcodes/slideshow/slideshow-video.js, config-templatebuilder/avia-shortcodes/slideshow/slideshow.js, config-templatebuilder/avia-shortcodes/slideshow/slideshow.php, config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.js, config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.css, config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.php, config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.php, config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.css, config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.js, config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.css, config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.php, config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.php, config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.css, config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.js, config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.css, config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.php, config-templatebuilder/avia-shortcodes/social_share/social_share.css, config-templatebuilder/avia-shortcodes/social_share/.DS_Store, config-templatebuilder/avia-shortcodes/social_share/social_share.php, config-templatebuilder/avia-shortcodes/tab_section/tab_section.js, config-templatebuilder/avia-shortcodes/tab_section/tab_section.css, config-templatebuilder/avia-shortcodes/tab_section/tab_section.php, config-templatebuilder/avia-shortcodes/tab_section/tab_sub_section.php, config-templatebuilder/avia-shortcodes/table/table.php, config-templatebuilder/avia-shortcodes/table/table.css, config-templatebuilder/avia-shortcodes/tabs/tabs.js, config-templatebuilder/avia-shortcodes/tabs/tabs.css, config-templatebuilder/avia-shortcodes/tabs/tabs.php, config-templatebuilder/avia-shortcodes/team/team.php, config-templatebuilder/avia-shortcodes/team/team.css, config-templatebuilder/avia-shortcodes/testimonials/testimonials.css, config-templatebuilder/avia-shortcodes/testimonials/.DS_Store, config-templatebuilder/avia-shortcodes/testimonials/testimonials.js, config-templatebuilder/avia-shortcodes/testimonials/testimonials.php, config-templatebuilder/avia-shortcodes/timeline/timeline.js, config-templatebuilder/avia-shortcodes/timeline/timeline.css, config-templatebuilder/avia-shortcodes/timeline/timeline.php, config-templatebuilder/avia-shortcodes/toggles/toggles.js, config-templatebuilder/avia-shortcodes/toggles/toggles.css, config-templatebuilder/avia-shortcodes/toggles/toggles.php, config-templatebuilder/avia-shortcodes/video/video.js, config-templatebuilder/avia-shortcodes/video/video.css, config-templatebuilder/avia-shortcodes/video/video.php, config-templatebuilder/avia-template-builder/assets/css/avia-builder-rtl.css, config-templatebuilder/avia-template-builder/images/placeholder-audio.png, config-templatebuilder/avia-template-builder/images/sc-audio-player.png, config-templatebuilder/avia-template-builder/images/sc-buttonrow.png, config-templatebuilder/avia-template-builder/images/sc-icongrid.png, config-templatebuilder/avia-template-builder/images/sc-price.png, config-templatebuilder/avia-template-builder/images/sc-search.png, config-templatebuilder/avia-template-builder/images/sc-timeline.png, config-templatebuilder/avia-template-builder/php/asset-manager.class.php, config-templatebuilder/avia-template-builder/php/element-manager.class.php, config-templatebuilder/avia-template-builder/php/shortcode-parser.class.php, config-templatebuilder/avia-template-builder/php/external/JSqueeze.php, config-wpml/wpml-mod.js, css/avia-snippet-cookieconsent.css, css/avia-snippet-lightbox.css, css/avia-snippet-site-preloader.css, css/avia-snippet-widget.css, framework/css/conditional_load/avia_global_admin.css, (Email address hidden if logged out) , (Email address hidden if logged out) , (Email address hidden if logged out) , (Email address hidden if logged out) , (Email address hidden if logged out) , framework/js/conditional_load/avia_facebook_front.js, framework/js/conditional_load/avia_google_maps_api.js, framework/js/conditional_load/avia_google_maps_front.js, framework/js/conditional_load/avia_google_maps_widget_admin.js, framework/php/auto-updates/class-avia-envato-base-api.php, framework/php/auto-updates/class-avia-theme-updater.php, framework/php/class-gmaps.php, framework/php/font-management/class-avia-icon-fonts.php, framework/php/font-management/class-avia-font-management-base.php, framework/php/font-management/class-avia-type-fonts.php, images/layout/fake_facebook.jpg, images/layout/logo_modern.png, images/layout/search.png, includes/admin/demo_files/demo_images/agency-onepage.jpg, includes/admin/demo_files/demo_images/band.jpg, includes/admin/demo_files/demo_images/dark-photography.jpg, includes/admin/demo_files/demo_images/dj.jpg, includes/admin/demo_files/demo_images/elegant-portfolio.jpg, includes/admin/demo_files/demo_images/freelancer.jpg, includes/admin/demo_files/demo_images/gaming.jpg, includes/admin/demo_files/demo_images/knowledgebase.jpg, includes/admin/demo_files/demo_images/law.jpg, includes/admin/demo_files/demo_images/minimal-photography.jpg, includes/admin/demo_files/demo_images/visual-artist.jpg, includes/admin/demo_files/agency-onepage.php, includes/admin/demo_files/agency-onepage.xml, includes/admin/demo_files/band.php, includes/admin/demo_files/band.xml, includes/admin/demo_files/dark-photography.php, includes/admin/demo_files/dark-photography.xml, includes/admin/demo_files/dj.php, includes/admin/demo_files/dj.xml, includes/admin/demo_files/elegant-portfolio.php, includes/admin/demo_files/elegant-portfolio.xml, includes/admin/demo_files/freelancer.php, includes/admin/demo_files/freelancer.xml, includes/admin/demo_files/gaming.php, includes/admin/demo_files/gaming.xml, includes/admin/demo_files/knowledgebase.php, includes/admin/demo_files/knowledgebase.xml, includes/admin/demo_files/law.php, includes/admin/demo_files/law.xml, includes/admin/demo_files/minimal-photography.php, includes/admin/demo_files/minimal-photography.xml, includes/admin/demo_files/visual-artist.php, includes/admin/demo_files/visual-artist.xml, includes/helper-assets.php, includes/helper-privacy.php, js/aviapopup/.DS_Store, js/avia-snippet-cookieconsent.js, js/avia-snippet-lightbox.js, js/avia-snippet-megamenu.js, js/avia-snippet-sidebarmenu.js, js/avia-snippet-site-preloader.js, js/avia-snippet-sticky-header.js, js/avia-snippet-widget.js, lang/ca.mo, lang/ca.po, lang/pl_PL.mo, lang/pl_PL.po, lang/sk_SK.mo, lang/sk_SK.po, config-gutenberg/class-avia-gutenberg.php, config-menu-exchange/config.php

    Theme update failed.

    #1030596

    Hey andana,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .html_av-overlay-side .av-burger-overlay-scroll {
        right: auto;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1030022

    Correction. Both auto scroll down when you load the page. So if you go HOME it just automatically goes down to that area without actually clicking anything.

    I deleted the code. Any ideas why that happened?

    #1030007

    Hi,

    The first one works best by changing the vertical position. The second one auto scrolls down whether I click something or not. So I will go with the first version.

    Thanks so much!!!

    Thank you, Ismael. Can I add your snippet for the shortcode exactly so for showing

    [avs_toc]

    in an ALB text block within a post or page manually?

    I added your snippet

    add_shortcode('avs_toc', 'avs_toc_function');
    function avs_toc_function() {
        $args = array (
            'name' => 'Displayed Everywhere',
            'id' => 'av_everywhere',
            'description' => '',
            'class' => '',
            'before_widget' => '<section id="avia_auto_toc-2" class="widget clearfix avia_auto_toc">',
            'after_widget' => '<span class="seperator extralight-border"></span></section>',
            'before_title' => '',
            'after_title' => '',
            'widget_id' => 'avia_auto_toc_custom',
            'widget_name' => 'Enfold Child Table of Contents',
            );
    
        $instance = array (
            'title' => 'Toc',
            'exclude' => '',
            'style' => '',
            'level' => 'h1',
            'single_only' => 1,
            'indent' => 1,
            'smoothscroll' => 1,
            );
    
        $toc = new avia_auto_toc;
    	return $toc->widget($args, $instance);
    }

    to my Code-Snippets plugin, where all snippets go, that normally go to the functions.php,
    and then added the shortcode [avs_toc] to a text block ALB element in a page, but there is no output at all.

    Are there any changes to the snippet necessary?
    Thanks.

    Hi,

    You can move that code in the includes > loop-index.php file where the post elements reside, right about line 262 where the title is.

    echo $title;
    

    – And could you please give me a hint, how to make a shortcode out of it please?

    The shortcode:

    add_shortcode('avs_toc', 'avs_toc_function');
    function avs_toc_function() {
        $args = array (
            'name' => 'Displayed Everywhere',
            'id' => 'av_everywhere',
            'description' => '',
            'class' => '',
            'before_widget' => '<section id="avia_auto_toc-2" class="widget clearfix avia_auto_toc">',
            'after_widget' => '<span class="seperator extralight-border"></span></section>',
            'before_title' => '',
            'after_title' => '',
            'widget_id' => 'avia_auto_toc_custom',
            'widget_name' => 'Enfold Child Table of Contents',
            );
    
        $instance = array (
            'title' => 'Toc',
            'exclude' => '',
            'style' => '',
            'level' => 'h1',
            'single_only' => 1,
            'indent' => 1,
            'smoothscroll' => 1,
            );
    
        $toc = new avia_auto_toc;
    	return $toc->widget($args, $instance);
    }
    

    You can then use this code to render the toc in the template file:

    
    echo do_shortcode('[avs_toc]');
    

    Or use it directly in the editor.

    Best regards,
    Ismael

    Hi,

    This is possible but you have to modify the single.php file.

    Add this code:

    $args = array (
    							'name' => 'Displayed Everywhere',
    							'id' => 'av_everywhere',
    							'description' => '',
    							'class' => '',
    							'before_widget' => '<section id="avia_auto_toc-2" class="widget clearfix avia_auto_toc">',
    							'after_widget' => '<span class="seperator extralight-border"></span></section>',
    							'before_title' => '',
    							'after_title' => '',
    							'widget_id' => 'avia_auto_toc_custom',
    							'widget_name' => 'Enfold Child Table of Contents',
    							);
    
    						$instance = array (
    							'title' => 'Toc',
    							'exclude' => '',
    							'style' => '',
    							'level' => 'h1',
    							'single_only' => 1,
    							'indent' => 1,
    							'smoothscroll' => 1,
    							);
    
    						$toc = new avia_auto_toc;
    						$toc->widget($args, $instance);

    Above line 41:

    get_template_part( 'includes/loop', 'index' );
    

    Yes, you can create a custom shortcode from that.

    Best regards,
    Ismael

    #1024836

    In reply to: update URL wrong?

    Hi perler

    This happened to everybody, because Envato (themeforest) changed their API. Therefore the auto-update will not work in this case and you should update the theme manually via FTP.

    Please follow this step by step guide I wrote for my case which might help you:
    1) Make a full backup of your website using a backup plugin.
    2) Safe the backup somewhere outside from the webserver of your website (e.g. on your local computer or in any cloud storage you trust).
    3) Sign out from your WordPress website.
    4) Go to your themeforest account, sign in and download the updated Enfold v4.5 to your computer. Extract it and search for the file enfold.zip. Extract this file as well to already have your folder ready to be uploaded.
    5) Sign in to FTP or SFTP using FileZilla or any other tool which is able to do that.
    6) Go to the folder ./wp-content/themes and search for “enfold”. If you want, you can download the enfold folder to your computer as well (just in case you want to restore if afterwards which is easier like that than using the whole backup).
    7) Delete the folder enfold via FTP. This may take 5-10min, depending on the server speed obviously.
    8) Wait until it is finished and the enfold folder is gone. If that is the case, upload the “new” enfold folder including v4.5 to your website in the same directory.
    9) Sign in to your WordPress website again and go to the Enfold tab (or the one from your child theme). Scroll down to the tab called Theme Update.
    10) Your current API token will not work anymore as Envato changed some stuff on their API. Therefore you need to remove your current key and generate a new private key as visible in your themeforest account under “Settings” -> “API keys”. Go to https://build.envato.com and follow the steps there. To me, https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#toggle-id-5 was also very helpful (scroll down a bit there to find out about the permissions your private API key needs in order to check for future Enfold updates). Without these permissions it will not work.
    11) After revalidating your new private key within the Enfold update tab, you should see a blue rectangle saying when it could be checked for the last time.
    12) Done!

    I hope this helps! Feel free to ask me in case you need any assistance.

    Best,
    Michael

    #1024833

    Hi Toni

    Please follow this step by step guide in order to update Enfold 4.4.1 to 4.5 manually via FTP. This is needed because Envato (themeforest) changed their API. Therefore auto update will not work.

    So here we go:
    1) Make a full backup of your website using a backup plugin.
    2) Safe the backup somewhere outside from the webserver of your website (e.g. on your local computer or in any cloud storage you trust).
    3) Sign out from your WordPress website.
    4) Go to your themeforest account, sign in and download the updated Enfold v4.5 to your computer. Extract it and search for the file enfold.zip. Extract this file as well to already have your folder ready to be uploaded.
    5) Sign in to FTP or SFTP using FileZilla or any other tool which is able to do that.
    6) Go to the folder ./wp-content/themes and search for “enfold”. If you want, you can download the enfold folder to your computer as well (just in case you want to restore if afterwards which is easier like that than using the whole backup).
    7) Delete the folder enfold via FTP. This may take 5-10min, depending on the server speed obviously.
    8) Wait until it is finished and the enfold folder is gone. If that is the case, upload the “new” enfold folder including v4.5 to your website in the same directory.
    9) Sign in to your WordPress website again and go to the Enfold tab (or the one from your child theme). Scroll down to the tab called Theme Update.
    10) Your current API token will not work anymore as Envato changed some stuff on their API. Therefore you need to remove your current key and generate a new private key as visible in your themeforest account under “Settings” -> “API keys”. Go to https://build.envato.com and follow the steps there. To me, https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#toggle-id-5 was also very helpful (scroll down a bit there to find out about the permissions your private API key needs in order to check for future Enfold updates). Without these permissions it will not work.
    11) After revalidating your new private key within the Enfold update tab, you should see a blue rectangle saying when it could be checked for the last time.
    12) Done!

    I hope this helps! Feel free to ask me in case you need any assistance.

    Best,
    Michael

    #1021281
    timchurchman
    Participant

    Hi, I am trying to create rollovers for my main menu like this demo: https://kriesi.at/themes/enfold-law/
    My site is: http://huntpr.co.za

    if i go to advanced styling change color there and click on “Apply only to mouse hover state” nothing happens.
    I would like the color to change to ddae87 and the line appear in this color?

    Already this code sitting in Quick CSS so not sure if anything blocking:
    #top #header.header-scrolled .container.av-logo-container {
    background: #88bbc8;
    }

    #scroll-top-link:hover {
    opacity:1 !important;
    color:cce4e7 !important;
    }

    .page-id-734 #contact input[type=’submit’]:hover {
    background-color: green !important;
    }

    /*hide auto sidebar from magazine*/
    .page-id-2967 .sidebar .widget_nav_hide_child {
    display: none;
    }

    /*2.8 firefox problem*/
    .avia-image-container-inner, .avia_image {
    max-width: 100%;
    }

    #socket .avia-bullet, #socket .avia-menu-fx {
    display: none;
    }

    .container {
    padding: 0px 95px;
    }

    .avia-button.avia-color-grey, .avia-button.avia-color-grey {
    color:#faf400!important;
    border: 1px solid #faf400!important;
    }

    h1, h2, h3 {
    text-transform: none !important;
    }

    h1, h2, h3, h4, h5, h6 {
    font-weight: normal!important;
    }

    #top * {
    border-radius:0 !important;
    }

    .avia-button {
    border: 1px solid !important;
    }

    #avia-menu #menu-item-3252 .avia-menu-text {
    border-color:#ddae87 !important;
    }

    /* Color section container width */
    #team .container {
    width: 100% !important;
    min-width: 100%;
    padding: 0;
    margin: 0;
    }

    #top .avia_ajax_form .button {
    width: 100%;
    }

    #top .social_bookmarks li a {
    color: #ddae87;
    }

    @media only screen and (max-width: 1200px) {
    .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item-avia-special {
    display: block !important;
    }
    .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item {
    display: none;
    }
    .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item-avia-special a { border: none !important; }
    }

    .avia-button:hover {
    background-color: #ffffff !important;
    color: #231f20 !important;
    }

    #scroll-top-link {
    color: white !important;
    border: 1px solid #ddae87 !important;
    background-color: #ddae87 !important;
    }

    .home #av_section_1 a.avia-color-custom {
    border:1px solid #ddae87 !important;
    }

    .avia-team-member .team-social {
    background: rgba(17,20,71,0.8);
    }

    .team-social a {
    background: #ddae87;
    }

    .team-social a::before {
    color: #ffffff;
    }

    .av_menu_icon_beside {
    border-right:none;
    }

    .home #av_section_1 a.avia-color-custom:hover {
    border:1px solid white !important;
    }

    .home #av_section_1 a.avia-color-light:hover {
    border:rgba(255, 255, 255, 0.5) !important;
    }

    .avia-menu {
    border-right:none !important;
    }

    .page-id-734 #contact input[type=’submit’]:hover {
    background-color: #ddae87 !important;
    border-color: #ddae87 !important;
    color: #ffffff !important;
    }

    .avia-menu-text{
    letter-spacing: 2px!important;
    }

    #1020735
    zero0cool
    Participant

    I’m using two easy sliders on a page whose element visibility is different for desktop, tablet landscape, tablet portrait (slider 1) and mobile portrait (slider 2). This works great, but whilst the hidden slider is not visible, it leaves unnecessary whitespace which really bugs me.

    Since pictures say more than 1000 words

    With hidden easy slider between menu and image: https://pasteboard.co/HI7xrFw.png

    Hidden easy slider removed: https://pasteboard.co/HI7xVMj.png

    if it helps, this is the div of the hidden easy slider.

    <div data-size="masonry" data-lightbox_size="large" data-animation="fade" data-conditional_play="" data-ids="534,535,536" data-video_counter="0" data-autoplay="true" data-bg_slider="false" data-slide_height="" data-handle="av_slideshow" data-interval="5" data-class=" avia-builder-el-0 el_before_av_slideshow avia-builder-el-first av-desktop-hide av-medium-hide av-small-hide" data-css_id="" data-scroll_down="" data-control_layout="av-control-default" data-custom_markup="" data-perma_caption="" data-autoplay_stopper="" data-image_attachment="" data-min_height="0px" data-default-height="100" class="avia-slideshow avia-slideshow-1 av-control-default avia-slideshow-masonry av_slideshow avia-builder-el-0 el_before_av_slideshow avia-builder-el-first av-desktop-hide av-medium-hide av-small-hide avia-fade-slider" itemprop="ImageObject" itemscope="itemscope" itemtype="https://schema.org/ImageObject"><ul class="avia-slideshow-inner " style="padding: 0px;"><li class=" slide-1 " style="visibility: visible; opacity: 1; transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s; transform: translateZ(0px);"><div data-rel="slideshow-1" class="avia-slide-wrap "><img src="https://i1.wp.com/coaching-choices.ch/wp-content/uploads/2018/10/MK3C2960.jpg?fit=705%2C705&ssl=1" width="705" height="705" title="MK3C2960" alt="" itemprop="thumbnailUrl" data-lazy-src="https://i1.wp.com/coaching-choices.ch/wp-content/uploads/2018/10/MK3C2960.jpg?fit=705%2C705&ssl=1&is-pending-load=1" srcset="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class=" jetpack-lazy-image" style="left: 0px;"><noscript><img src='https://i1.wp.com/coaching-choices.ch/wp-content/uploads/2018/10/MK3C2960.jpg?fit=705%2C705&ssl=1' width='705' height='705' title='MK3C2960' alt='' itemprop="thumbnailUrl" /></noscript></div></li><li class=" slide-2 "><div data-rel="slideshow-1" class="avia-slide-wrap "><img src="https://i0.wp.com/coaching-choices.ch/wp-content/uploads/2018/10/MK3C2704.jpg?fit=705%2C705&ssl=1" width="705" height="705" title="MK3C2704" alt="" itemprop="thumbnailUrl" data-lazy-src="https://i0.wp.com/coaching-choices.ch/wp-content/uploads/2018/10/MK3C2704.jpg?fit=705%2C705&ssl=1&is-pending-load=1" srcset="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class=" jetpack-lazy-image"><noscript><img src='https://i0.wp.com/coaching-choices.ch/wp-content/uploads/2018/10/MK3C2704.jpg?fit=705%2C705&ssl=1' width='705' height='705' title='MK3C2704' alt='' itemprop="thumbnailUrl" /></noscript></div></li><li class=" slide-3 "><div data-rel="slideshow-1" class="avia-slide-wrap "><img src="https://i1.wp.com/coaching-choices.ch/wp-content/uploads/2018/10/MK3C2703.jpg?fit=705%2C705&ssl=1" width="705" height="705" title="MK3C2703" alt="" itemprop="thumbnailUrl" data-lazy-src="https://i1.wp.com/coaching-choices.ch/wp-content/uploads/2018/10/MK3C2703.jpg?fit=705%2C705&ssl=1&is-pending-load=1" srcset="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class=" jetpack-lazy-image"><noscript><img src='https://i1.wp.com/coaching-choices.ch/wp-content/uploads/2018/10/MK3C2703.jpg?fit=705%2C705&ssl=1' width='705' height='705' title='MK3C2703' alt='' itemprop="thumbnailUrl" /></noscript></div></li></ul><div class="avia-slideshow-arrows avia-slideshow-controls"><a href="#prev" class="prev-slide" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello">Previous</a><a href="#next" class="next-slide" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello">Next</a></div><div class="avia-slideshow-dots avia-slideshow-controls"><a href="#1" class="goto-slide active">1</a><a href="#2" class="goto-slide ">2</a><a href="#3" class="goto-slide ">3</a></div></div>

    #1020478
    msutherin
    Participant

    Hi,

    Enfold theme is great! I was wondering if I could add an auto-scroll down feature to the Tab Section when you click on a tab so it moves up so you can see what is below. My client is complaining that the user won’t know to scroll down there.

    • This topic was modified 7 years, 3 months ago by msutherin.
Viewing 30 results - 391 through 420 (of 1,181 total)