Viewing 30 results - 271 through 300 (of 1,181 total)
  • Author
    Search Results
  • #1225108

    I do not see your site link – cause i’m participant as you – to give better advice it would be nice to know more about your header settings.

    Well i guess this is not quiet simple as some like to have it.
    To get the sticky header even on mobile and on transparency header this is just
    quick css:
    ( i have on most of my installations the 990 break point for burger menu so: )

    @media only screen and (max-width: 989px) {
      .responsive #top #wrap_all #header .container {
        width: 90%;
        max-width: 90%;
      }
       
      #header {
        position: fixed !important;
        height: 80px !important;
        max-height: 80px !important;
      }
      
      .responsive.html_mobile_menu_tablet #top #wrap_all .av_header_transparency {
        background-color: transparent;
      }
      
      .responsive #top .av-logo-container ,
      .responsive #top .logo a,
      .responsive #top .logo img {
        height: 80px !important;
        max-height: 80px !important;
      }
      
      .responsive #top .av-main-nav .menu-item-avia-special a {
        height: 80px !important;
        line-height: 80px !important;
      }
    }

    __________________________ Just for Info – if you only interested in the solution skip to the next post ________________

    The sticky state when burger is active depends on the menu.js and the condition for :
    if( burger_menu.is(":visible")
    my search here on the board resulted unfortunately only in hits, which commented out this condition, which if you test this of course does not lead to the goal.
    so we had to find a calculation for that case – this can be found out more or less quickly – my solution is:

    if( burger_menu.is(":visible") && (scrolled + modifier > top_pos) ){
    	this.css({top: header.Height() , position: 'fixed !important'}); fixed = true;
    }

    Info: i first had the header.outerHeight() – but with that i had a 1px difference on scrolling on – do not know why.

    So far so good, but if you want to use a hamburger for the submenu in the responsive case, what is calculated in the script is unfortunately overwritten by the menu.css by setting values to !important.
    Even the calculated inline style could not overwrite these settings because the selector is more specific f.e:

    /**** from original menu.css - each break point (switch ) has these rules set to !important  *********/
    @media only screen and (max-width: 989px){
    	.responsive #top .av-switch-990.av-submenu-container{top: auto !important; position: relative !important; height:auto; min-height:0; margin-bottom: -1px;}
    }

    so we had to get rid of the important setting – thats why we need to have an own child-theme menu.css

    #1222949

    Hi,

    Sorry for the delay. The screenshot looks kind of odd. Why is the menu in the middle of the page?

    If you want to adjust the vertical position of the menu overlay, try to use this css code.

    .html_av-overlay-side .av-burger-overlay-scroll {
    	left: auto;
    	right: 10%;
    }
    

    You might have to adjust the right position on different screens.

    Best regards,
    Ismael

    #1222633

    In reply to: Scroll to top button

    Hey Dawnllambert,

    It is added automatically for you, it’s only visible if you have scrolled down a bit on a page though.

    Best regards,
    Rikard

    #1222594
    proformancestudios
    Participant

    Hi guys,

    Trying to get below iframe responsive but I’m out of luck:

    <iframe style=”width: 100%; height: 800px; overflow: hidden;” src=”link in private content” frameborder=”0″ scrolling=”auto”></iframe>

    Iframe and content is not wrapped and some details are shown outside the viewport. Means, customer need to scroll to the right to catch missing content. Iframe is used in a grid row and text element.

    As a temporarily solution i’m using the iframe src without the addition “iframe=1”. This is causing the problem that there is shown an additional header/navigation bar and footer. So when customer is navigating to a different side this side is opened as iframe in existing page.

    Would be happy if you have a responsive solution for using src: https://……&#8230;..?iframe=1 on our end!

    Thanks.

    Claudia

    #1222157

    Hey Sigmund,

    Here are the shortcodes for the page, of course, images will be missing but the general layout should work:

    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-shadow' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='' color='main_color' custom_bg='' src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2017/02/banner-news-alt.jpg' attachment='1057' attachment_size='full' attach='scroll' position='top center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.6' overlay_color='#000000' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0' av_uid='av-151tuo']
    [av_heading heading='Latest News<br/>Everything thats going on at Enfold is collected here' tag='h1' style='blockquote modern-quote modern-centered' size='40' subheading_active='' subheading_size='15' padding='0' color='custom-color-heading' custom_font='#ffffff' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-wtxug'][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-teydk']
    
    [av_textblock size='' font_color='custom' color='#dddddd' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-m9huw']
    <p style="text-align: center;">Hey there! We are Enfold and we make really beautiful and amazing stuff.
    This can be used to describe what you do, how you do it, & who you do it for.</p>
    [/av_textblock]
    [/av_section]
    
    [av_blog blog_type='posts' link='category' blog_style='single-big' columns='3' contents='excerpt' content_length='content' preview_mode='auto' image_size='portfolio' items='1' offset='no_duplicates' paginate='no' conditional='is_subpage' av_uid='av-dpk7k']
    
    [av_blog blog_type='posts' link='category' blog_style='blog-grid' columns='2' contents='excerpt' content_length='content' preview_mode='auto' image_size='portfolio' items='6' offset='no_duplicates' paginate='yes' av_uid='av-8sew8']
    

    Best regards,
    Victoria

    for mobile there will be nearly no alternative to let them scroll away.
    but some desktop browsers even got troubles with it too: e.g: Safari13

    the background-attachment: fixed runs often not as expected.
    But there is a workaround to fix this:
    https://kriesi.at/support/topic/theme-is-shaking-a-lot-in-safari/#post-1207474

    the trick is not to have that background-attachment:fixed – but a container below ( and the pseudo container : before fits well for that ) that has position:fixed
    : see link above

    by the way if you need more browser support: https://autoprefixer.github.io/

    and use then in the link above better :

    .bg-fixed {
      clip-path: inset(0 0 0 0);
      background-size: 0 !important;
    }
    
    .bg-fixed:before {
      background-image: inherit !important;
      background-repeat: no-repeat;
      content: "";
      position: fixed;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-size: cover;  /*** depends on your wanted settings ***/
      will-change: transform;
    }
    • This reply was modified 5 years, 7 months ago by Guenni007.
    #1219101

    Hi Jordan,
    Thanks for your reply. Sorry, no time to check before…

    Here is my css :

    /*Theme Name: Enfold Child
    Description: A Child Theme for the Enfold WordPress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating wil be much easier then.
    Version: 1.0
    Author: Kriesi
    Author URI: http://kriesi.at
    Template: enfold*/

    @import url(“../enfold/style.css”);

    #header_meta {
    border-top: none;
    box-shadow: none;
    }

    .avia-menu-fx, .avia-shadow, #header_meta {
    background-color: transparent !important;
    border: none !important;
    border-top: none !important;
    box-shadow: none !important;
    }

    #header_main{
    border-bottom-width: 0px!important;
    border-bottom-style: solid;
    z-index: 1;
    }

    .html_modern-blog .avia-content-slider .slide-entry-title {
    font-size: 15px!important;
    text-align: left;
    letter-spacing: 1px;
    }

    /*
    #footer .container{
    border-top: 1px solid #f3f3f3 !important;
    margin-top: 50px!important;
    }
    */

    /* decrease footer height */
    #footer {
    padding: 0;
    }
    #footer .widget {
    margin: 20px 0 10px 0;
    }

    .avia-search-tooltip {
    margin-top: 25px!important;
    }

    /* Move MAIN MENU down*/
    .av-main-nav > li > a { line-height: 180px !important; }

    /* MAIN MENU */
    .av-main-nav > li > a {
    font-weight: 300!important;
    font-family: ‘Titillium Web’, sans-serif !important;
    text-transform: uppercase!important;
    }

    .main_menu {
    margin-top: 0px!important;
    }

    #top #avia-menu .av-language-switch-item {
    display: none;
    }

    .av-main-nav ul li a {
    border: 0 !important;
    }

    /* * Start top header bar * */

    /* Regular menu links */
    .header_color .sub_menu>ul>li>a {
    color: #ffffff!important;
    text-decoration: none!important;
    font-size: 13px!important;
    font-weight: 300!important;
    font-family: ‘Titillium Web’, sans-serif !important;
    letter-spacing: 0.06em!important;
    }

    /* Current page menu link */
    .sub_menu li.current-menu-item > a,.sub_menu a:hover {
    color: #f7a71f!important;
    text-decoration: none!important;
    }

    .sub_menu > ul > li:hover > a {
    color: #f7a71f!important;
    }

    .sub_menu li {
    border-right-style: solid;
    border-right-width: 1px;
    border-color: #ffffff!important;
    line-height: 10px;
    }

    #top .social_bookmarks li {
    border-right-style: solid;
    border-right-width: 0px!important;
    }

    /* * End Top header bar * */

    /* Main Sub Menu styling */
    #top #header .mega_menu_title a {
    color: inherit;
    font-size: 14px;
    line-height: 1.1em;
    color: #ffffff!important;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    background-color: transparent;
    background-image: none;
    background-repeat: repeat;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto auto;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
    border-image-source: none;
    border-image-slice: 100% 100% 100% 100%;
    border-image-width: 1 1 1 1;
    border-image-outset: 0 0 0 0;
    border-image-repeat: stretch stretch;
    }

    #top .av-main-nav ul a{
    width: 100%;
    height: auto;
    float: left;
    text-align: left;
    line-height: 23px;
    padding-top: 8px;
    padding-right: 15px;
    padding-bottom: 8px;
    padding-left: 15px;
    font-size: 15px!important;
    font-weight:300!important;
    min-height: 23px;
    max-width: none;
    text-decoration-color: currentcolor;
    text-decoration-line: none;
    text-decoration-style: solid;
    font-family: inherit;
    }

    /*
    #top #header .avia_mega_div > .sub-menu{
    display: table;
    padding-top: 20px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    border-top-style: solid;
    border-top-width: 0px!important;
    background-color: #ffffff!important;
    }
    */

    /* Immeubles Grid */
    .grid-entry-excerpt {
    font-size: 14px!important;
    font-style:normal!important;
    margin-bottom: -2px!important;
    margin-top: 10px!important;
    font-weight: 300!important;
    font-family: ‘Titillium Web’, sans-serif !important;
    }

    .grid-entry-title {
    font-size: 16px!important;
    font-weight: 500;
    }

    /* MAP LIST PRO Styling */
    body .prettyMapList .mapHolder{
    height:580px!important;
    }

    .prettyMapList .prettyFileBar .prettyMapListSearch
    {
    display:none!important;

    }
    .infoWindowContainer.infobox {
    border-top-width: 0px!important;
    border-right-width: 0px!important;
    border-bottom-width: 0px!important;
    border-left-width: 0px!important;
    }

    /* Post Navigation left and right */
    #top .avia-post-nav{
    position: fixed;
    height: 110px;
    top: 50%;
    background-color: #f7a81f!important;
    background-image: none;
    background-repeat: repeat;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto auto;
    color: #ffffff;
    margin-top: -55px;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    text-decoration-color: currentcolor;
    text-decoration-line: none;
    text-decoration-style: solid;
    z-index: 501;
    transform: translate3d(0px, 0px, 0px);
    }

    /* Download Monitor tweaks */
    .download_monitor ul.disc, .entry-content-wrapper ul {
    list-style:none!important;
    }

    .download_monitor, .entry-content-wrapper li{
    margin-bottom:5px!important;
    border-bottom: 1px solid #f2f2f2;
    }

    .dlm_download_list{
    margin-left: -10px!important;
    padding-top: 5px!important;
    padding-right: 0px;
    padding-bottom: 5px!important;
    padding-left: 0px;
    text-decoration: none!important;
    font-size: 13px!important;
    letter-spacing: 0.03em!important;
    }

    /* GRID PROPRIETE */
    .grid-entry .inner-entry {
    margin-right: 20px!important;
    margin-bottom: 20px!important;
    }

    /* MOBILE tweaks */

    @media only screen and (max-width: 767px) {
    #menu-item-search {display:none!important;}

    nav.sub_menu {
    color: #ffffff!important;
    text-decoration: none!important;
    font-size: 10px!important;
    font-weight: 300!important;
    font-family: ‘Titillium Web’, sans-serif !important;
    letter-spacing: 0.01em!important;
    padding-right: 5px!important;
    }

    #header { display: none!important; }

    body {
    font-size: 14px!important;
    }
    td
    {
    font-size: 14px!important;
    }
    th {
    font-weight: bold!important;
    font-size: 14px!important;
    font-style: normal!important;
    }
    }

    .av-hamburger-inner
    {
    display: block;
    top: 50%;
    margin-top: -50px!important;
    }

    I cannot find what to do to avoid this problem. A setting somewhere in the Enfold Child section ?

    Thanks for your precious help !

    Best regards,

    Marc

    #1214506

    Hi dgvicario,

    There have been some changes since then to WP and some additions also by me for some things.
    Below is what I now have in my child theme’s functions.php regarding images and thumbnails:

    // set WordPress compression of image and thumbnails on upload and resize to 90 or 95
    // images are manually resized, compressed and optimized BEFORE upload already,
    // WP compression on images on resize/for thumbnails is standard = 82
    add_filter('jpeg_quality', function($arg){return 95;});
    
    // disable image scaling in WordPress 5.3 update (november 2019)
    // WP added feature that forces images to scale down if larger than threshold (2560px)
    // this interferes with chosen approach for retina images, i.e. serving up
    // double-size images with very high compression...
    add_filter( 'big_image_size_threshold', '__return_false' );
    
    // remove "responsive images" functionality in WP 4.4 and on from this theme
    add_filter('wp_get_attachment_image_attributes', function($attr) {
       if (isset($attr['sizes'])) unset($attr['sizes']);
       if (isset($attr['srcset'])) unset($attr['srcset']);
       return $attr;
    }, PHP_INT_MAX);
    add_filter('wp_calculate_image_sizes', '__return_false', PHP_INT_MAX);
    add_filter('wp_calculate_image_srcset', '__return_false', PHP_INT_MAX);
    remove_filter('the_content', 'wp_make_content_images_responsive');
    
    // Disable WordPress responsive srcset images
    add_filter('max_srcset_image_width', create_function('', 'return 1;'));
    
    // Disable theme thumbnail creation, will do image sizes manually
    // double-size thumbnails for retina screens
    // so we do not use the automatically resized and cropped thumnails from the theme
    // better to create them manually proper size and image compression
    // use Photoshop to set exact double size and quality between Q10 and Q40
    
    // Disable loads of Enfold & WP image sizes upon upload (to save space)
    add_action('init', 'remove_enfold_image_sizes');
    function remove_enfold_image_sizes() {
    // do NOT remove widget size, is used in backend portfolio items!
    // do NOT remove square size, is used in backend portfolio and previous/next buttons!
    //	remove_image_size('widget');
    //	remove_image_size('square');
    	remove_image_size('featured');
    	remove_image_size('featured_large');
    	remove_image_size('portfolio');
    	remove_image_size('portfolio_small');
    	remove_image_size('gallery');
    	remove_image_size('magazine');
    	remove_image_size('masonry');
    	remove_image_size('entry_without_sidebar');
    	remove_image_size('entry_with_sidebar');
    	remove_image_size('shop_thumbnail');
    	remove_image_size('shop_catalog');
    	remove_image_size('shop_single');
        remove_image_size('shop_gallery_thumbnail');
    }
    
    // Remove unneeded WP image sizes
    // updated 2020-01-13 because of additional image sizes
    function remove_default_image_sizes( $sizes) {
      unset( $sizes['thumbnail']); // 80px thumbnail
      unset( $sizes['small']); // 150px thumbnail - (Size based on Media setting)
      unset( $sizes['medium']); // 300px - (Size based on Media settings)
      unset( $sizes['medium_large']); // 768 - (Size based on Media settings)
      unset( $sizes['large']); // 1024
      unset( $sizes['extra_large']); // 1500
      unset( $sizes['1536x1536']);
      unset( $sizes['2048x2048']);
      return $sizes;
    }
    add_filter('intermediate_image_sizes_advanced', 'remove_default_image_sizes');
    
    // Lightbox links default to "large" size thumbnail, we link it to original image size
    add_filter('avf_avia_builder_gallery_image_link', 'avia_change_gallery_thumbnail_link', 10, 4);
    function avia_change_gallery_thumbnail_link($link, $attachment, $atts, $meta) {
       $link = wp_get_attachment_image_src($attachment->ID, "full");
       return $link;
    }
    
    // Disable scrolling of background when lightbox image opened
    add_action('wp_footer', 'custom_lightbox_script');
    function custom_lightbox_script(){
    ?>
    <script type="text/javascript">
    (function($) {
        function a() {
          $('body').on('click', '.lightbox-added', function() {
            if($('.mfp-bg').length >= 1) {
              $('html').css("overflow-y", "hidden");
            }
          });
    
          $('body').on('click', function() {
            setTimeout( function() {
              if($('.mfp-bg').length == 0) {
                $('html').css("overflow-y", "scroll");
              }
            },500);
          });
        }
      a();
    })(jQuery);
    </script>
    <?php
    }

    Hope that helps, try it out.
    Rob

    P.S.:
    Don’t forget to do a further (lossless) compression on the images you created in Photoshop BEFORE upload to WP, using for example File Optimizer on Windows or Trimage on Linux.

    P.S. #2
    Note that the sizes you set in WP Settings > Media Settings affect the sizes for Thumbnail size, Medium size and Large size – and set “Crop thumbnail to exact dimensions (normally thumbnails are proportional)” checkmark.

    • This reply was modified 5 years, 8 months ago by rob2701. Reason: Added remark about Media Settings in WP
    #1213532

    Hi,

    The demo page is created using the Layout Builder, if you activate debug mode and paste the shortcode below to a new page then you can see the settings on the page.

    https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#debug-mode

    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-shadow' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='' color='main_color' custom_bg='' src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2017/02/banner-news-alt.jpg' attachment='1057' attachment_size='full' attach='scroll' position='top center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.6' overlay_color='#000000' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0' av_uid='av-151tuo']
    [av_heading heading='Latest News<br/>Everything thats going on at Enfold is collected here' tag='h1' style='blockquote modern-quote modern-centered' size='40' subheading_active='' subheading_size='15' padding='0' color='custom-color-heading' custom_font='#ffffff' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-wtxug'][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-teydk']
    
    [av_textblock size='' font_color='custom' color='#dddddd' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-m9huw']
    <p style="text-align: center;">Hey there! We are Enfold and we make really beautiful and amazing stuff.
    This can be used to describe what you do, how you do it, & who you do it for.</p>
    [/av_textblock]
    [/av_section]
    
    [av_blog blog_type='posts' link='category' blog_style='single-big' columns='3' contents='excerpt' content_length='content' preview_mode='auto' image_size='portfolio' items='1' offset='no_duplicates' paginate='no' conditional='is_subpage' av_uid='av-dpk7k']
    
    [av_blog blog_type='posts' link='category' blog_style='blog-grid' columns='2' contents='excerpt' content_length='content' preview_mode='auto' image_size='portfolio' items='6' offset='no_duplicates' paginate='yes' av_uid='av-8sew8']

    Best regards,
    Rikard

    #1213330

    Topic: Layerslider wp

    in forum Enfold
    moisturewordpress
    Participant

    Hi, i have to questions.
    1) I have to LyerSlider WP at the top on my page. First one for Mobile and then one for desktop. When you view the page on a mobile device, it loads automatically. When you see it on a desktop, you have to scroll to peel it in motion. It should start automatically. What am I doing wrong?

    2) When I select Edit Colum / Advance / Animate and either Fade or Bottom to top or one of the other options, the element disappears.

    This is the page:

    ☺️ Carsten

    #1212278
    Yigit
    Keymaster

    Hi,

    We wanted to create this thread as a channel to share the fixes that will be included in upcoming updates and known issues that are being worked on.

    Preview for upcoming version 7.2:

    • Feature: added support for WooCommerce Brands on single product pages
    • Feature: new ALB Element “Product Brands”
    • Feature: new ALB Element “Product Brands List”
    • fixed: CSS for WooCommerce lock symbols in password fields
    • Updated: css and js minification scripts without gulp in folder /dev

    Current fixes for upcoming version 7.1.4 are as following ( last update 2025-01-14 ):

    • tweak: force clear cache to reload css and js files after theme options update
    • fixed: Warning: Undefined array key “trail_end” in /enfold/includes/helpers/helper-template-logic.php on line 210
    • fixed: link notices in language files
    • Patchstack team Broken Access Control vulnerability report: fixed in ajax search
    • Patchstack team XSS vulnerability report: Iconbox link fixed

    DEVELOPERS:

    • added: filter ‘avf_default_container_tag_textblock’ – allows to modify the Text Block container tag
    • added: filter ‘avf_before_force_clear_caches’ – shortcut clear cache and use own functions
    • added: action ‘ava_force_clear_caches’ – called when finished with clear cache

    Fixes for released version 7.1.3 are as following:

    • tweak: Center reCaptcha V2 when Contact Form labels are centered
    • fixed: ALB Team Member CET cannot be saved
    • accessibility: add an option to replace section tag by div in ALB textblock
    • Patchstack team XSS vulnerability report: column and cell link fixed
    • PHP 8.3 compatibility: fixed filesize <= 0 problem in function avia_backend_create_file()
    • removed: Support for plugin “One Click Accessibility”

    Fixes for released version 7.1.2 are as following:

    • feature: added Product Review Tab to Enfold Combo Widget
    • accessibility: replace empty hidden cookie reload anchor link with span
    • tweak: add a check for options array to be an array in function avia_get_option()
    • tweak: Add padding and background color to ALB Textblock
    • tweak: ALB Postslider – fixed inconsistent postdate when excerpt contains whitespace characters
    • tweak: make the string “Please wait a few seconds and dont reload the page….” translatable
    • performance: refactor code in ..\config-templatebuilder\avia-template-builder\php\base-classes\class-popup-templates-base.php function replace_templates()
    • fixed: misaligned ALB Gallery Navigation Arrows
    • fixed: query monitor message avia_element_js missing dependency on theme options page
    • PHP 8.4 compatibility: fix deprecation notices for nullable types in function parameters
    • Updated: Layerslider 7.15.1

    DEVELOPERS:

    • tweak: add byRef to parameters array of apply_filters_ref_array() calls
    • fixed: BigCommerce Masonry issue

    Fixes for released version 7.1.1 are as following:

    • tweak: Clean up options descriptions in theme options – added “read more” – section
    • tweak: Clean up options descriptions in ALB modal popup – added “read more” – section
    • tweak: replace checkboxes with toggles in ALB modal popup
    • fixed: Uncaught TypeError: can’t access property “applyFilters”, obj is undefined in../enfold/js/avia-js.js (window[‘wp’].hooks)
    • fixed: Warning: Undefined property: stdClass::$ID in ../enfold/includes/config-enfold/functions-enfold.php on line 860 + 862
    • fixed: ALB Audio Player cannot edit playlist when bundled Layerslider is deactivated
    • fixed: CSS in preview in theme options page “Header”
    • fixed: CSS with cart icon and transparent header
    • fixed: CSS for svg icons in header to inherit Advanced Styling CSS options
    • fixed: class-modal-elements.php select endtag missing /
    • Updated: Layerslider 7.14.4
    • updated: sync all language files (7.1.1)

    DEVELOPERS:

    • added: theme support “avia_alb_checkbox_toggles”
    • added: filter ‘avf_theme_option_desc_chars’ – allows to modify svg icons for additional description text
    • added: filter ‘avf_theme_option_desc_read’ – allows to modify read more text for additional description text
    • added: filter ‘avf_alb_modal_desc_chars’ – allows to modify svg icons for additional description text
    • added: filter ‘avf_alb_modal_desc_read’ – allows to modify read more text for additional description text
    • removed: outdated code already in comment

    Fixes for released version 7.1 are as following:

    • tweak: replace Wp Media Library by WordPress Media Library in ALB icon selector modal popup
    • performance: avoid multiple db queries when using attachment_url_to_postid
    • added: Google Fonts Source Sans Pro and Poppins to default font list

    Fixes for released version 7.0 are as following:

    • feature: added option to various ALB elements to filter WooCommerce OnSale products
    • feature: support to upload custom SVG Icon sets, also colored svg icons (color scheme settings or custom color settings do not affect color of these icons)
    • feature: theme option to deactivate default iconfont entypo-fontello in “SVG Iconset and Iconfont Manager”
    • tweak: support german umlaut in URL of “Table of content” widget
    • tweak: added class content-* to grid row cell container .flex_cell
    • tweak: load google maps js API async
    • tweak: remove double HTML markup for “date” in ALB timeline
    • PHP 8.2 compatibility: fixed Uncaught TypeError in class MetaBoxBuilder line 311
    • fixed: Fold/Unfold button not hidden in responsive mode when fold container is hidden
    • WordFence vulnerablity fix: limit download of theme options to admin only (discovered by mikemyers)
    • WordFence vulnerablity fix: removed not needed function avia_ajax_get_image_color() (discovered by mikemyers)
    • updated: Google Maps API version to 3.59
    • updated: Italian language files it_IT (version 7.0, provided by BigBatT – (Email address hidden if logged out) )
    • updated: Dutch language files nl_NL (version 7.0 provided by EZWebdesign – Roger Hoen )
    • updated: French language files fr_FR (version 7.0, provided by comkapi – Patrick)

    DEVELOPERS:

    • tweak: splitted functions.php and functions-enfold.php in seperate files and restructured files in /includes folder
    • tweak: adjusted logic to connect ALB default icon font “fontello” to class avia_font_manager
    • tweak: moved default icon font entypo-fontello to subfolder ..\config-templatebuilder\avia-template-builder\assets\fonts\entypo-fontello\
    • tweak: added “SVG Entypo-Fontello” as default svg icon set to subfolder ..\config-templatebuilder\avia-template-builder\assets\fonts\svg_entypo-fontello\
    • tweak: improved aria and accessability support for svg icons
    • added: iconfont entypo-fontello-enfold containing icons needed by enfold core (e.g. for 3-rd party plugins)
    • removed: function $.fn.avia_color_picker_autodetection – not used by Enfold
    • removed: function avia_ajax_get_image_color() and css dependencies
    • added: filter ‘avf_svg_icon_set_config’ –
    • added: filter ‘avf_svg_icon_info’ –
    • added: filter ‘avf_svg_images_get_icon_html’ –
    • added: filter ‘avf_svg_images_local_to_url’ –
    • added filter ‘avf_svg_images_icon_as_img’ – allows to replace svg tag with < img src=' '>
    • added: filter ‘avf_switch_iconfont_to_svg’ –
    • added: filter ‘avf_use_svg_from_media_library’ – allows to skip svg from media library
    • added: filter ‘avf_queried_svg_from_media_library’ – filter queried svg files
    • renamed: filter ‘avb_backend_editor_element_data_filter’ to ‘avf_backend_editor_element_data_filter’
    • removed: filter ‘avia_post_nav_entries’ -> ‘avf_post_nav_entries’
    • added: attribute is-colored=”true” is added to svg tag of colored svg icons

    Fixes for released version 6.0.9 are as following:

    • tweak: Improve logic for /?avia_extended_shop_select= queries – use data-href attribute and js routing
    • tweak: add footer tag when Footer Setting: Select a page to replace both footer and socket
    • fixed: Uncaught TypeError: Cannot access offset of type string on string in ../includes/helper-asset.php
    • fixed: Enfold theme options translations do not work in 6.0.8
    • fixed: PHP Fatal error: Uncaught TypeError: strip_tags(): in ..\framework\php\widgets\widget-classes\class-avia-partner.php
    • WP 6.2.0 compatibility: fix missing bulk select checkboxes in backend menu page

    DEVELOPERS:

    • tweak: improve var ‘–enfold-header-height’ (provided by Guenni007)

    Fixes for released version 6.0.8 are as following:

    • WP 6.7.0 compatibility: fixed PHP Notice: The function _load_textdomain_just_in_time was called too early
    • PHP 8.2 compatibility: added stricter type checking to avoid warnings or errors

    DEVELOPERS:

    • tweak: add post metadata as classes to body tag
    • added: filter ‘avf_metadata_to_body_class’ – allows to filter post metadata like tags, category, … added to body tag

    Fixes for released version 6.0.7 are as following:

    • feature: add support for youtube shorts videos in lightbox (https://www.youtube.com/shorts/video-id)
    • feature: add support for youtube shorts videos in Easy Slider, Fullwidth Easy Slider, Fullscreen Slider, Section background
    • tweak: wrapped theme option Shop Description to allow use of shortcodes
    • fixed: Google Fonts preview link in the Enfold theme options broken
    • fixed: WP Block Embed element has extra height and padding
    • YOAST compatibility: added a check for WC()->session to product_snippet_tabs.php
    • WP 6.7.0 compatibility: fixed function wp_targeted_link_rel is deprecated since version 6.7.0
    • WP 6.7.0 compatibility: fixed function wp_targeted_link_rel_callback is deprecated since version 6.7.0
    • WP compatibility: fixed broken editor when layerslider plugin disabled
    • Updated: LayerSlider 7.14.0

    DEVELOPERS:

    • tweak: wrap usage of sessionStorage in try/catch blocks
    • tweak: added CSS var ‘–enfold-header-height’ to HTML tag

    Fixes for released version 6.0.6 are as following:

    • fixed: post css stylings not updated after importing theme settings from file
    • reverted: ALB Accordion – open a toggle when hash manually changed in browser search bar (might break element behaviour)

    Fixes for released version 6.0.5 are as following:

    • tweak: updated theme options description Google Measurement ID
    • tweak: added text-size-adjust property to base.css
    • tweak: changed CSS for X social icon
    • tweak: ALB Accordion – open a toggle when hash manually changed in browser search bar
    • added: missing text domain in ..\includes\admin\option_tabs\avia_menu.php
    • PHP 8.2 compatibility – fix: Allow usage of dynamic property for classes extending aviaFramework\base\object_properties and aviaBuilder\base\object_properties
    • Updated: LayerSlider 7.12.4 (fixed vulnerability report)

    Fixes for released version 6.0.4 are as following:

    • tweak: ?s=xxx is removed except for search page (no more 404 redirect)
    • fixed: image formats like jpg, png, … in pagination links open lightbox instead of page
    • fixed: Wordfence XSS Vulnerabilities reports with wrapper_class and class
    • removed: backwards compatibility 4.8.4. default white sonar effect for ALB icon on hover
    • removed: support for outdated Envato theme updater API < 3.0
    • PHP 8.2 compatibility – fix: Deprecated: Use of “self” in callables
    • Updated: LayerSlider 7.12.2

    Fixes for released version 6.0.3 are as following:

    • tweak: remove “Dismiss” from admin notice 6.0 and 6.0.1
    • tweak: ALB Akkordion adjust js logic to avoid unnecessary updating of toggle titles in DOM
    • added: Threads Social Icon to theme options and ALB Social Buttons
    • fixed: WooCommerce category banner image shows wrong image when no category image is selected
    • fixed: ALB Accordion toggle title does not allow 0
    • fixed: ALB Accordion toggle titles with numbers throw js error
    • accessibility: added aria-label expand/collapse to ALB toggle heading
    • accessibility: added aria-label to HTML heading tags in layout templates (e.g. loop-index.php, loop-page.php, …) and ALB elements
    • accessibility: added aria-label to HTML footer tag in footer.php
    • accessibility: added aria-label to HTML aside tags
    • accessibility: added “Contact Form” as default aria-label text to new added ALB Contact From element – already existing are not touched

    DEVELOPERS:

    • added: filter ‘avf_aria_label_for_header’ – allows to change the generated aria-label text before output
    • added: filter ‘avf_aria_label_for_footer’ – allows to change the default aria-label text before output
    • added: filter ‘avf_aria_label_for_sidebar’ – allows to change the default aria-label text before output

    Fixes for released version 6.0.2 are as following:

    • Compatibility: WP 6.6 fix for block editor hiding ALB button in header
    • accessibility: use aria-label=false for ALB icons with a link
    • accessibility: added role=”menu” aria-orientation=”vertical” to av-burger-overlay div

    DEVELOPERS:

    • tweak: ALB Heading added addition class av-font-size-is-xx to container

    Fixes for released version 6.0.1 are as following:

    • performance tweak: remove custom fields query from frontend and allow to limit result set in backend
    • tweak: extended ALB button elements with aria-label from custom title attribute
    • tweak: extended ALB button elements button title attribute option with dynamic content
    • tweak: ALB buttons move option “Button Title Attribute” to “Content” tab below “Icon Visibility”
    • tweak: ALB buttons removed condition for Button Title Attribute in modal popup
    • tweak: display 6.0 backend update message to administrators only
    • tweak: remove query for WP custom fields from frontend for dynamic content feature
    • tweak: extend theme option to show “Custom Layout” menus in WP menus to admins or all users
    • tweak: make Contact Form placeholders inherit body font family
    • fixed: missing default icons in ALB Button Row element in the backend
    • fixed: Shop banner warning “Array to string conversion in ../config-woocommerce/config.php on line 1773”
    • fixed: ALB Accordion title broken when using HTML markup
    • fixed: ALB masonry adds alt attribute to background image container – removed

    DEVELOPERS:

    • added: theme support ‘avia_builder_add_heading_type_size_class’ – adds option to add additional class to heading for custom styling
    • added: filter ‘avf_layerslider_order_by_select_alb’ – change the order of layersliders in selectbox in canvas of ALB
    • added: filter ‘avf_custom_layout_show_wp_menus’ – allows to filter, which users can see “Custom Layout” menus in WP menus

    Fixes for released version 6.0 are as following:

    • feature: extended options for shop banner location (above or below title/breadcrumb bar) and parallax or scroll
    • feature: added options for responsive shop banner image
    • feature: ALB Accordion added option to show toggle title below content
    • feature: ALB Accordion added option to set slide speed of toggle content for each toggle
    • feature: ALB Accordion added option for an open toggle title
    • feature: Theme options -> Layout Builder -> Custom Page Layout And Dynamic Content
    • feature: Dynamic content support in TinyMCE “ALB Magic Wand Button” dropdown
    • feature: new ALB element “Dynamic Data” (can be used in ALB Table element)
    • feature: new ALB element “Custom Layout”
    • feature: shortcode ‘av_dynamic_el’ – supports output of dynamic data also in non ALB areas
    • feature: added theme option Layout Builder -> Show advanced options -> Activate Your Custom Post Types For ALB
    • feature: CPT support to select default terms when saving post (WP Dashboard -> Settings -> Writing)
    • feature: CPT support to extend CPT Edit Page table with taxonomy column and thumbnail colum (WP Dashboard -> Settings -> Writing)
    • feature: Extended ALB video for portrait videos and better lightbox CSS for portrait, landscape and also for custom ratio videos
    • feature: added Dynamic Content support to various elements – see changelog
    • feature: ACF (Advanced Custom Fields) support with dynamic content for ACF types – see changelog
    • feature: Support for ACF post types and taxonomies
    • feature: Checkbox ACF -> Post Type -> Advanced Configuration -> Enfold Layouts to show Layout Metabox in edit screen
    • tweak: updated the “For Developers: Custom Tab ID” string to “Custom Toggle ID” in ALB Accordion element
    • weak: moved ALB “Page Content” to Layout Element Tab
    • accessibility: ALB tabs added better HTML support for European Accessibility Act
    • accessibility: started adding html markup aria-hidden=”true” tabindex=”-1″ for empty h* tags to several ALB elements
    • accessibility: added aria-label=’…’ to elements where user entered a “Custom Title Attribute” in addition to title=’….’
    • accessibility: ALB accordion added better HTML support for European Accessibility Act
    • fixed: warning undefined-array-key-medium-in-class-popup-templates-responsive-php
    • fixed: CSS for ALB audio player in audio post format
    • fixed: ALB table element delete icon for rows not visible for button rows
    • fixed: Theme option ‘Custom Post Type Screen’ not hidden when theme support ‘avia-custom-elements-cpt-screen’ is not set
    • fixed: CSS for ALB table when empty cells in the pricing table are hidden when “show empty cells” is enabled
    • fixed: Latest News widget might break backend
    • fixed: ALB icon box link title displayed instead of title when link is applied to icon and title
    • Updated: LayerSlider 7.11.1

    DEVELOPERS:

    • feature: dismissible admin notice boxes with possibility to include custom HTML templates
    • tweak: wrapped functions in ..\config-woocommerce\admin-options.php in function_exits()
    • tweak: redesign of theme options update logic with integration of dismissible admin notice boxes
    • tweak: ALB video add custom css class option and video format to lightbox wrap container .mfp-wrap (based on solution by Guenni007)
    • added: theme support ‘avia_disable_cpt_support’ to disable CPT support feature (does not load class file)
    • added: various filters for custom page layout, dynamic content support, admin notice box – see changelog
    • added: classes ‘avia-video-cookie-allowed’ and ‘avia-video-cookie-not-allowed’ to HTML
    • added: filter ‘avf_alb_magic_wand_button’ – allows to modify tinyMCE menu for ALB magic wand dropdown
    • added: filter ‘avf_force_alb_usage’ – allows to force ALB for a post (see https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/ALB%20core/avf_force_alb_usage.php)
    • added: filter ‘avf_shortcode_insert_button_backend_disabled’ – allows to enable/disable an ALB shortcode button in backend
    • added: filter ‘avf_cpt_support_post_types’ – allows to remove CPT’s from support by this feature (e.g. like products)
    • added: filter ‘avf_cpt_support_no_table_filters’ – allows to skip adding thumbnail and taxonomy columns to CPT table screens
    • added: filter ‘avf_cpt_wp_settings_writing’ – allows to create a custom output on WP Settings Writing screen
    • added: filter ‘avf_woocommerce_default_banner_image_size’ – change shop banner image size (intended for product category thumbs)
    • added: filter ‘avf_contact_form_datepicker_args’ – change contact form datepicker aguments e.g. like date range
    • added: template taxonomy.php to provide basic support for ACF custom taxonomies (based on taxonomy-portfolio_entries.php)
    • removed: avia_backend_admin_notice()
    • removed: avia_backend_reset_admin_notice()

    Regards,
    Yigit

    • This topic was modified 3 years, 7 months ago by Günter.
    • This topic was modified 3 years, 6 months ago by Günter.
    • This topic was modified 3 years, 4 months ago by Günter.
    • This topic was modified 3 years ago by Günter.
    • This topic was modified 1 year, 10 months ago by Günter.
    • This topic was modified 1 year, 7 months ago by Günter.
    • This topic was modified 1 year, 6 months ago by Günter.
    #1211083

    this at the end of the answer is the enfold shortcode for that grid-row with all classes and IDs preset.
    you can insert that on an empty page in the debug modus field.

    You know how to activate the debug mode?
    this to child-theme functions.php

    // Debug Modus Enfold
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug(){
      return "debug";
    }

    the only thing to mention is that i use the little plugin of Günter here from the dev team : avia-special-characters
    to have special characters on input fields – that is the #amp# for the ampersand.

    next to know is my little snippet to use the grid-row alb not as full-width layout element:
    to child-theme functions.php:

    function grid_layout_notfull(){
    ?>
    <script>
    (function($){
        $('.av-layout-grid-container.grid-notfull' ).wrap( '<div class="main_color notfullsize color1"></div>');
        $('.notfullsize').css({"clear": "both", "width": "100%" , "float": "left" , "position": "static" , "min-height": "100px" });
        $('.grid-notfull').css({"max-width": "1510px", "margin": "0 auto" , "padding": "0 50px"});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'grid_layout_notfull');

    you have to synchronize the 1510px to your setting ( on your page it is 1440px )

    and then a lot of flex-box model css for your quick css.
    i use on the grid-row an ID : covid-beyond
    and a custom-class for not full-width: grid-notfull

    /*******************************************/
    /****** covid fields responsive behavior *****/
    /*******************************************/
    #covid-beyond {
        display: flex !important;
        flex-flow: row wrap;
        justify-content: stretch;
        background: transparent !important
    }
    
    #covid-beyond .av-subheading_below {
          margin-top:0.3em;
    }
    
    #covid-beyond .flex_cell.cell-one, 
    #covid-beyond .flex_cell.cell-two, 
    #covid-beyond .flex_cell.cell-three, 
    #covid-beyond .flex_cell.cell-four {
        display: flex !important;
        width: unset !important;
        flex: 1 1 23%;
        margin: 0 !important;
        padding: 1% !important;
    }
    
    #covid-beyond .flex_cell.cell-one .flex_cell_inner ,
    #covid-beyond .flex_cell.cell-two .flex_cell_inner ,
    #covid-beyond .flex_cell.cell-three .flex_cell_inner ,
    #covid-beyond .flex_cell.cell-four .flex_cell_inner {
      display: flex !important;
      flex-flow: column wrap;
      justify-content: space-between;
    }
    
    #covid-beyond .flex_cell.cell-one .flex_cell_inner .flex_column,
    #covid-beyond .flex_cell.cell-two .flex_cell_inner .flex_column,
    #covid-beyond .flex_cell.cell-three .flex_cell_inner .flex_column,
    #covid-beyond .flex_cell.cell-four .flex_cell_inner .flex_column {
      flex: 1 1 auto;
      border: solid #aaa;
      border-width: 2px 0
    }
    
    /******* comment this out if you don't like the bottom margin on the smaller columns *****/
    #covid-beyond .flex_cell.cell-three .flex_cell_inner .flex_column:first-child, 
    #covid-beyond .flex_cell.cell-four .flex_cell_inner .flex_column:first-child {
        margin-bottom: 20px;
    }
    
    #covid-beyond .flex_cell_inner .flex_column:nth-child(2) {
      margin-top: -2px !important;
    }
    
    #covid-beyond .flex_column {
        min-height: 250px;
    }
    
    #covid-beyond .cell-one .flex_column {
      background-color: transparent !important;
    }
    
    #covid-beyond .cell-one .flex_cell_inner {
      background: linear-gradient(rgba(235,134,78,0.18),rgba(235,134,78,0.6)) !important;
    }
    
    #covid-beyond .avia-button-wrap {
      position: absolute;
      bottom: 10px;
      right: 10px;
    }
    
    /***************  Media Querries *************************/
    @media only screen and (max-width:1085px) {
      #covid-beyond .flex_cell.cell-one  {
          flex: 1 1 100%;
      }
      #covid-beyond .flex_cell.cell-two, 
      #covid-beyond .flex_cell.cell-three, 
      #covid-beyond .flex_cell.cell-four {
          flex: 1 1 33.29%;
      }
      #covid-beyond .cell-one .flex_cell_inner {
        width: 100%;
      }
    } 
    
    @media only screen and (max-width:930px) {
      #covid-beyond .flex_cell.cell-one, 
      #covid-beyond .flex_cell.cell-two, 
      #covid-beyond .flex_cell.cell-three, 
      #covid-beyond .flex_cell.cell-four  {
          flex: 1 1 49%;
      }
      #covid-beyond .flex_cell.cell-two .flex_cell_inner .flex_column {
          border-width: 2px 0 0;
      }
    } 
    
    @media only screen and (max-width:767px) {
      #covid-beyond {
          justify-content: space-evenly;
      }
      #covid-beyond .flex_cell.cell-one, 
      #covid-beyond .flex_cell.cell-two, 
      #covid-beyond .flex_cell.cell-three, 
      #covid-beyond .flex_cell.cell-four {
          flex: 1 1 100%;
      }
      #covid-beyond .flex_cell.cell-two .flex_cell_inner .flex_column, 
      #covid-beyond .flex_cell.cell-three .flex_cell_inner .flex_column, 
      #covid-beyond .flex_cell.cell-four .flex_cell_inner .flex_column {
          border-width: 0 0 2px 0;
      }
      .responsive #top .container #covid-beyond .av-content-small, 
      .responsive #top #wrap_all #covid-beyond .flex_column, 
      .responsive #top #wrap_all #covid-beyond .av-flex-cells .no_margin {
              margin-bottom: 0px;
      }
        
      .responsive #top #wrap_all #covid-beyond.av-flex-cells .no_margin {
          padding-left: 20px !important;
          padding-right: 20px !important;
      }
      #covid-beyond .flex_column {
          min-height: 150px !important;
      }
    } 

    the shortcodes for that grid-row

    [av_layout_row border='' min_height_percent='' min_height_pc='25' min_height='0' color='main_color' mobile='av-flex-cells' mobile_breaking='av-break-at-tablet' id='covid-beyond' custom_class='grid-notfull big-screens' aria_label='' av_element_hidden_in_editor='0' av_uid='av-1jw1sp']
    [av_cell_one_fourth vertical_align='top' padding='20px' padding_sync='true' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' link='' linktarget='' link_hover='' mobile_display='' custom_class='cell-one' av_uid='av-huwh']
    
    [av_one_full first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' link='' linktarget='' link_hover='' padding='20px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background='bg_color' background_color='#ffffff' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_breaking='' mobile_display='' av_uid='av-6na81d' custom_class='']
    
    [av_heading heading='COVID-Beyond' tag='h2' link='' link_target='' style='blockquote modern-quote' size='' subheading_active='subheading_below' subheading_size='15' margin='' padding='10' color='' custom_font='' custom_class='' id='' admin_preview_bg='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-2sx44h3'][/av_heading]
    
    [av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' id='' custom_class='' av_uid='av-2wp1dvr' admin_preview_bg='']
    Krise als Chance zum Neuanfang auf höherer Ebene
    [/av_textblock]
    
    [/av_one_full][/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='20px' padding_sync='true' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' link='' linktarget='' link_hover='' mobile_display='' custom_class='cell-two' av_uid='av-wk8rt']
    
    [av_one_full first min_height='' vertical_alignment='av-align-top' space='' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='20px' padding_sync='true' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='#f8edff' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' aria_label='' av_uid='av-65k3td']
    
    [av_heading heading='Leaders #amp# Organisationen' tag='h3' link='' link_target='' style='blockquote modern-quote' size='' subheading_active='subheading_below' subheading_size='15' margin='' padding='10' color='' custom_font='' custom_class='' id='' admin_preview_bg='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-2n5g4o7'][/av_heading]
    
    [av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' id='' custom_class='' av_uid='av-2g5fcav' admin_preview_bg='']
    Zukunftsbild und Strategie. Komplexität auf den Punkt. Treffende Entscheidungsfindung.
    
    Entwicklung at once;
    Persönlichkeit, Team, Leadership, Kultur, Organisation und Realität
    [/av_textblock]
    
    [/av_one_full][/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='20px' padding_sync='true' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' link='' linktarget='' link_hover='' mobile_display='' custom_class='cell-three' av_uid='av-12q1c9']
    
    [av_one_full first min_height='' vertical_alignment='av-align-top' space='no_margin' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='20px' padding_sync='true' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='#fffae0' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' aria_label='' av_uid='av-5obfoh']
    
    [av_heading heading='Leaders’ Familien #amp# Freunde' tag='h3' link='' link_target='' style='blockquote modern-quote' size='' subheading_active='subheading_below' subheading_size='15' margin='' padding='10' color='' custom_font='' custom_class='' id='' admin_preview_bg='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-25d8pvr'][/av_heading]
    
    [av_button label='Click me' icon_select='yes-right-icon' icon='ue832' font='entypo-fontello' size='small' position='right' label_display='' title_attr='' color='silver' custom_bg='#444444' custom_font='#ffffff' link='manually,http://' link_target='' id='' custom_class='' av_uid='av-k9xvb024' admin_preview_bg='']
    
    [/av_one_full][av_one_full first min_height='' vertical_alignment='av-align-bottom' space='no_margin' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='20px' padding_sync='true' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='#edf8ff' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' aria_label='' av_uid='av-440hrt']
    
    [av_heading heading='Individuen, Paare, Familien, Coaches #amp# Consultants' tag='h3' link='' link_target='' style='blockquote modern-quote' size='' subheading_active='' subheading_size='15' margin='' padding='10' color='' custom_font='' custom_class='' id='' admin_preview_bg='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-1t8tzgn'][/av_heading]
    
    [av_button label='Click me' icon_select='yes-right-icon' icon='ue832' font='entypo-fontello' size='small' position='right' label_display='' title_attr='' color='silver' custom_bg='#444444' custom_font='#ffffff' link='manually,http://' link_target='' id='' custom_class='' av_uid='av-k9xvb024' admin_preview_bg='']
    
    [/av_one_full][/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='20px' padding_sync='true' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' link='' linktarget='' link_hover='' mobile_display='' custom_class='cell-four' av_uid='av-tjj6x']
    
    [av_one_full first min_height='' vertical_alignment='av-align-top' space='no_margin' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='20px' padding_sync='true' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='#ffe8ef' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' aria_label='' av_uid='av-4zyukx']
    
    [av_heading heading='Methoden der Zukunft #amp# Strategische Intuition' tag='h3' link='' link_target='' style='blockquote modern-quote' size='' subheading_active='' subheading_size='15' margin='' padding='10' color='' custom_font='' custom_class='' id='' admin_preview_bg='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-13ft747'][/av_heading]
    
    [av_button label='Click me' icon_select='yes-right-icon' icon='ue832' font='entypo-fontello' size='small' position='right' label_display='' title_attr='' color='silver' custom_bg='#444444' custom_font='#ffffff' link='manually,http://' link_target='' id='' custom_class='' av_uid='av-k9xvb024' admin_preview_bg='']
    
    [/av_one_full][av_one_full first min_height='' vertical_alignment='av-align-bottom' space='no_margin' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='20px' padding_sync='true' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='#f2ffe5' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' aria_label='' av_uid='av-4llc6h']
    
    [av_heading heading='Lern-Community der HyperTransformatoren, Frühaufstehern #amp# Rulebreakern' tag='h3' link='' link_target='' style='blockquote modern-quote' size='' subheading_active='' subheading_size='15' margin='' padding='10' color='' custom_font='' custom_class='' id='' admin_preview_bg='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-6mpmv'][/av_heading]
    
    [av_button label='Click me' icon_select='yes-right-icon' icon='ue832' font='entypo-fontello' size='small' position='right' label_display='' title_attr='' color='silver' custom_bg='#444444' custom_font='#ffffff' link='manually,http://' link_target='' id='' custom_class='' av_uid='av-k9xvb024' admin_preview_bg='']
    
    [/av_one_full][/av_cell_one_fourth]
    [/av_layout_row]
    
    #1210582
    felipe-mello
    Participant

    I’ve been using the Enfold theme professionally for a long time and I consider it the best theme on the market.
    It’s really possible to earn money by developing websites with the theme.
    But we always discover some problems that make our job a little more difficult.
    For this reason, I decided to post this topic, since I didn’t find any link to send suggestions.

    Suggestions for improving the Enfold theme:
    1. The area for inserting extra CSS should occupy an entire tab, since it is used a lot after i finish my websites. I insert a lot of CSS styles, mainly for the responsiveness control on tablets and mobile.

    2. Scroll down to anchor links don’t work properly on tablets. This problem has been around for a while and has never been resolved. We have to add extra code on all sites to solve it. When we click on a link in the main menu that scrolls down to an anchor link, the stopping point is never the right one.

    3. On some tablets, the drop down submenu in the main menu never disappears, even after we click on the link. This is also an old problem.

    4. There should be a separate tab for Top Bar styles only where we could choose background color and fonts, links and hover, behavior…

    5. The options for automatically changing the style of the media queries (Eg.: changing the font size for viewing on mobile) do not work properly. I always test my websites on desktop, notebook, ipad 2, ipad air 2, samsung mobile and iphone 6 and have to do everything with extra CSS.

    6. When we remove categories and tags from posts, the separator bar keeps showing and we have to use extra CSS to remove them.

    I think that’s it…

    Hey gilleskom,

    Thank you for the inquiry.

    The pagination doesn’t have an anchor by default, so the page will not automatically scroll to the position of the gallery when you go to the next or previous pages. However, we can use a script to change that behavior or alter the URL manually. Please check the following thread.

    // https://kriesi.at/support/topic/anchor-blog-pagination-to-same-page-location/#post-805218

    Best regards,
    Ismael

    Got it, I see where I went wrong. For anyone in the future reading this who uses GoDaddy and needs to enable the ZipArchive Extension:
    1. Log in to cPanel
    2. Scroll down to “Software” and click “Select PHP Version”
    3. In the bottom right-hand corner, select “Zip”
    4. It should automatically save. I was able to upload my icons immediately after this without issue.

    Thanks for your help!

    Oh my gosh, same! I’ve used Enfold 2017 for a few years but just recently got a new license for another site and noticed I have to use the arrow button on the keyboard when dragging a new element to the bottom of the page, whereas before, it would scroll automatically just by moving the mouse to the bottom edge of the browser. It makes adding new content elements from Avia builder much slower and super annoying.

    Hi, I’m not sure if this is the same issue, but I’ve encountered a problem with shortcodes showing at the top while having to scroll to the bottom to use the Avia Layout Builder from Enfold 2017.

    Of course, this is a little annoying but even more so, I keep getting a message stating “This block contains unexpected or invalid content.” which causes the block to expand to show the entire page, so it takes forever to get down to the builder. Idk why this is showing and the front page seems to look and act completely fine. I tried to resolve it and then save the page once it’s corrected, but when I open the page up again, the error is back.

    I think this also has to do with every page claiming “There is an autosave of this post that is more recent than the version below. View the autosave”
    When I always save my page after making changes. But now even when I don’t make any changes, it acts as I did by asking if I want to save or leave.

    This whole experience is highly frustrating especially since the front end looks completely fine and unchanged, and yet everything that’s supposed to resolve these issues doesn’t actually “stick”.

    If someone could please look into it, I’ll provide my login. I’ve searched on all the forums and tried to solve it myself but after a week, I really need your help!

    Thank you in advance!!

    –Steph

    #1206084

    Hey,

    Thanks for contacting us!

    I added following code to Functions.php file of your child theme

    
    function add_decrease_logo(){
    ?>
    <script>
    jQuery(window).scroll(function(){
    if(jQuery(this).scrollTop() > 200) {
    		jQuery('.logo img').addClass('decreased');
    	} else {
    		jQuery('.logo img').removeClass('decreased');
    	}
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_decrease_logo');

    Then added following code to Style.css file of your child theme

    .logo img.decreased { 
    	min-height: auto; 
    	max-height: 50px; 
    }

    Please review your website.

    Best regards,
    Yigit

    jannnnnneke
    Participant

    Hi! I got a lot of categories in my portfolio items. On desktop that’s fine, but on mobile when you click on a category it’s not clear that you have to scroll down to see the portfolio items. Is it possible that on mobile it automatically scrolls down to the grid content when you click on a category?

    Thanks a lot for all the good support!

    Lots of love!

    #1205528
    Obrmarketing
    Participant

    Hello Team,

    I am facing an issue with the load more ajax on auto-scroll. Please let us know in the latest version is the auto-scroll load more is working or you have removed this functionality in the latest version.

    Related to this we have checked and notice that the theme on the production website the version of the builder
    AviaFramework Version: 2.2
    AviaBuilder Version: 0.8
    With this version auto scroll load more ajax is working.

    We have used the latest theme and the version of the builder.
    Theme: EnfoldVersion: 4.7.4
    Installed: enfoldAviaFramework Version: 5.0
    AviaBuilder Version: 4.7.1.1

    With this version auto scroll load more ajax is not working.

    #1204690

    Hi,

    Thanks for contacting us and sorry for the late reply!

    1- Browsers prevent video autoplay when sound is enabled therefore videos are muted by default when autoplay is enabled.

    2- Please consider adding another table (tabular not pricing table) to your page right below your current table and edit your element and go to Advanced > Responsive Styling and choose “scrollable”.

    Login link did not work for me so I could not create an example. If you would like us to create one, please check logins once again :)

    Best regards,
    Yigit

    Hi Rikard,

    thx for your reply!

    As I has written – I switched to the classic-mode but after that I only can
    see the shortcode-edit-box (see screenshot 1).

    Another mystery is cleared – after the update wp switched automatically
    to the fullscreen-mode. This can be reversed with the button on the right
    side…ok…solved!

    But in the Avia-Mode I’m not able to scroll over the new bar at the bottom
    of the browser-window (see screenshot 2). This bar wasn’t there before
    WP 5.4!

    If you say you work also under OSX which system you use? I work with
    10.11.6 (El Capitan) I know it’s an old system but I can’t upgrade because
    of old software I need!

    With WP 5.3.2 and Avia everything is fine here! Should I downgrade WP?
    Or do you know now what kind of problem I have? This would be great! :)

    I’m looking forward to your new answer.

    Kind regards
    Carsten

    #1199760

    Hey StormWebDesign,

    Thanks for the login details. Could you point out an example which is not working on mobile? I had a quick look in your Quick CSS box and it looks like you have open media queries, for example:

    @media only screen and (min-width: 768px) {
    #top .logo img { 
        width: auto;
        height: auto;
        max-height: 100%;
    margin: 24px 0 0 0;
    }
    
    /* Logo on Scroll */
    .header-scrolled .logo img, .header-scrolled.header-scrolled-full .logo img {
        max-height: 25px !important;
        margin-top: 8px !important;
    }

    You need to close all queries properly, otherwise all CSS within them will only apply to that screen width.

    Best regards,
    Rikard

    #1199268

    In reply to: Sidebar accordion

    This reply has been marked as private.
    #1199014

    Topic: Blog Layout Issues

    in forum Enfold
    smura21
    Participant

    Dear Team Enfold.

    Can you please help me with a couple of requests.

    I have a live site. I installed Enfold and I am using a child theme and everything looks good but my client requires a few tweaks to the css.

    1. Load More function on Category and Tag Pages. So basically when someone selects to view posts by category or clicks on a tag, the Load More function should show up.
    2. Auto-load next post (this is to increase user engagement on the site). So as a client scrolls through a post, the next post must auto-load.
    3. Show similar posts under a post (categories and tags). The website only shows tags currently. This refers to the “you may also like” section under posts where it currently pulls posts with similar tags. Can we also get it to pull posts with similar categories?
    4. In article ads – insertion after a few paragraphs. We would like this automated so that after every few paragraphs there should be ads showing up.
    5. Post view counter. So users should be able to see how many people have viewed a post.

    I have sent you the credentials.

    #1198972

    Hey tremblayly,
    Sorry for the late reply, when I looked at your site I saw two popups, one looks like it’s made with “popup press” with a blue background, and another that looked like it was made with the built-in lightbox. The popup press looks like it can be triggered with a link in the menu by adding a class to the menu item, please see here.
    Our built-in lightbox popup can’t be triggered with a menu link.
    But if you want to have another popup that can be triggered with a menu link try adding all of this code in a code block element on your page:

    <script>
    (function($) {
        
             // DOM Ready
            $(function() {
    
                // Binding a click event
                $('#menu-item-3144').on('click', function(e) {
    
                    // Prevents the default action to be triggered. 
                    e.preventDefault();
    
                    // Triggering bPopup when click event is fired
                    $('#element_to_pop_up').bPopup();
    
                });
    
            });
    
        })(jQuery);
    
     (function(c){c.fn.bPopup=function(A,E){function L(){a.contentContainer=c(a.contentContainer||b);switch(a.content){case "iframe":var d=c('<iframe class="b-iframe" '+a.iframeAttr+"></iframe>");d.appendTo(a.contentContainer);t=b.outerHeight(!0);u=b.outerWidth(!0);B();d.attr("src",a.loadUrl);l(a.loadCallback);break;case "image":B();c("<img />").load(function(){l(a.loadCallback);F(c(this))}).attr("src",a.loadUrl).hide().appendTo(a.contentContainer);break;default:B(),c('<div class="b-ajax-wrapper"></div>').load(a.loadUrl,a.loadData,function(d,b,e){l(a.loadCallback,b);F(c(this))}).hide().appendTo(a.contentContainer)}}function B(){a.modal&&c('<div class="b-modal '+e+'"></div>').css({backgroundColor:a.modalColor,position:"fixed",top:0,right:0,bottom:0,left:0,opacity:0,zIndex:a.zIndex+v}).appendTo(a.appendTo).fadeTo(a.speed,a.opacity);C();b.data("bPopup",a).data("id",e).css({left:"slideIn"==a.transition||"slideBack"==a.transition?"slideBack"==a.transition?f.scrollLeft()+w:-1*(x+u):m(!(!a.follow[0]&&n||g)),position:a.positionStyle||"absolute",top:"slideDown"==a.transition||"slideUp"==a.transition?"slideUp"==a.transition?f.scrollTop()+y:z+-1*t:p(!(!a.follow[1]&&q||g)),"z-index":a.zIndex+v+1}).each(function(){a.appending&&c(this).appendTo(a.appendTo)});G(!0)}function r(){a.modal&&c(".b-modal."+b.data("id")).fadeTo(a.speed,0,function(){c(this).remove()});a.scrollBar||c("html").css("overflow","auto");c(".b-modal."+e).unbind("click");f.unbind("keydown."+e);k.unbind("."+e).data("bPopup",0<k.data("bPopup")-1?k.data("bPopup")-1:null);b.undelegate(".bClose, ."+a.closeClass,"click."+e,r).data("bPopup",null);clearTimeout(H);G();return!1}function I(d){y=k.height();w=k.width();h=D();if(h.x||h.y)clearTimeout(J),J=setTimeout(function(){C();d=d||a.followSpeed;var e={};h.x&&(e.left=a.follow[0]?m(!0):"auto");h.y&&(e.top=a.follow[1]?p(!0):"auto");b.dequeue().each(function(){g?c(this).css({left:x,top:z}):c(this).animate(e,d,a.followEasing)})},50)}function F(d){var c=d.width(),e=d.height(),f={};a.contentContainer.css({height:e,width:c});e>=b.height()&&(f.height=b.height());c>=b.width()&&(f.width=b.width());t=b.outerHeight(!0);u=b.outerWidth(!0);C();a.contentContainer.css({height:"auto",width:"auto"});f.left=m(!(!a.follow[0]&&n||g));f.top=p(!(!a.follow[1]&&q||g));b.animate(f,250,function(){d.show();h=D()})}function M(){k.data("bPopup",v);b.delegate(".bClose, ."+a.closeClass,"click."+e,r);a.modalClose&&c(".b-modal."+e).css("cursor","pointer").bind("click",r);N||!a.follow[0]&&!a.follow[1]||k.bind("scroll."+e,function(){if(h.x||h.y){var d={};h.x&&(d.left=a.follow[0]?m(!g):"auto");h.y&&(d.top=a.follow[1]?p(!g):"auto");b.dequeue().animate(d,a.followSpeed,a.followEasing)}}).bind("resize."+e,function(){I()});a.escClose&&f.bind("keydown."+e,function(a){27==a.which&&r()})}function G(d){function c(e){b.css({display:"block",opacity:1}).animate(e,a.speed,a.easing,function(){K(d)})}switch(d?a.transition:a.transitionClose||a.transition){case "slideIn":c({left:d?m(!(!a.follow[0]&&n||g)):f.scrollLeft()-(u||b.outerWidth(!0))-200});break;case "slideBack":c({left:d?m(!(!a.follow[0]&&n||g)):f.scrollLeft()+w+200});break;case "slideDown":c({top:d?p(!(!a.follow[1]&&q||g)):f.scrollTop()-(t||b.outerHeight(!0))-200});break;case "slideUp":c({top:d?p(!(!a.follow[1]&&q||g)):f.scrollTop()+y+200});break;default:b.stop().fadeTo(a.speed,d?1:0,function(){K(d)})}}function K(d){d?(M(),l(E),a.autoClose&&(H=setTimeout(r,a.autoClose))):(b.hide(),l(a.onClose),a.loadUrl&&(a.contentContainer.empty(),b.css({height:"auto",width:"auto"})))}function m(a){return a?x+f.scrollLeft():x}function p(a){return a?z+f.scrollTop():z}function l(a,e){c.isFunction(a)&&a.call(b,e)}function C(){z=q?a.position[1]:Math.max(0,(y-b.outerHeight(!0))/2-a.amsl);x=n?a.position[0]:(w-b.outerWidth(!0))/2;h=D()}function D(){return{x:w>b.outerWidth(!0),y:y>b.outerHeight(!0)}}c.isFunction(A)&&(E=A,A=null);var a=c.extend({},c.fn.bPopup.defaults,A);a.scrollBar||c("html").css("overflow","hidden");var b=this,f=c(document),k=c(window),y=k.height(),w=k.width(),N=/OS 6(_\d)+/i.test(navigator.userAgent),v=0,e,h,q,n,g,z,x,t,u,J,H;b.close=function(){r()};b.reposition=function(a){I(a)};return b.each(function(){c(this).data("bPopup")||(l(a.onOpen),v=(k.data("bPopup")||0)+1,e="__b-popup"+v+"__",q="auto"!==a.position[1],n="auto"!==a.position[0],g="fixed"===a.positionStyle,t=b.outerHeight(!0),u=b.outerWidth(!0),a.loadUrl?L():B())})};c.fn.bPopup.defaults={amsl:50,appending:!0,appendTo:"body",autoClose:!1,closeClass:"b-close",content:"ajax",contentContainer:!1,easing:"swing",escClose:!0,follow:[!0,!0],followEasing:"swing",followSpeed:500,iframeAttr:'scrolling="no" frameborder="0"',loadCallback:!1,loadData:!1,loadUrl:!1,modal:!0,modalClose:!0,modalColor:"#000",onClose:!1,onOpen:!1,opacity:.7,position:["auto","auto"],positionStyle:"absolute",scrollBar:!0,speed:250,transition:"fadeIn",transitionClose:!1,zIndex:9997}})(jQuery);
    </script>
    <style>
    #element_to_pop_up { 
        background-color:#fff;
        border-radius:15px;
        color:#000;
        display:none; 
        padding:20px;
        min-width:400px;
        min-height: 180px;
    }
    .b-close{
        cursor:pointer;
        position:absolute;
        right:10px;
        top:5px;
    }
    </style>
    <button id="my-button">POP IT UP</button>
    <!-- Element to pop up -->
    <div id="element_to_pop_up">
        <a class="b-close">x<a></a>
        Content of popup
    </div>

    Then look at the top of the code for this:

     // Binding a click event
    $('#menu-item-3144').on('click', function(e) {

    and change this ID to the ID of your menu item:
    #menu-item-3144
    then when it is clicked the popup will show. You can also adjust the html & css of the popup to suit.
    Please let us know if you need some more help with this.

    Best regards,
    Mike

    #1191771

    Hi,
    1) To change the submit button in the popup, I added this css:

    #responsive-form .avia_ajax_form input[type="submit"].button {
    	background-color: #000000;
    	color: #ffffff;
        border-color: #000000;
    }

    2) I see your text in the shortcode “Select the Activities You want to Involved in” above the checkboxes, but it’s not wrapped in a title field shortcode, please try building your form again so the title gets the correct shortcode for the fieldset.
    3) to add a scrollbar to your popup I added this css to your “.white-popup” class in your Quick CSS:

        overflow-y: auto;
        height: 600px;
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    #1188212

    Thanks: thats a good hint : i tried to realise it with addClass / removeClass – but only the direct way on inline css works :
    On mega-div open there is a class on that parent li that toggles – i use that for trigger : menu-item-mega-parent

    function no_scroll_on_mega_div_open(){
    ?>
    <script type="text/javascript">
    (function($) {
    	function a() {
    		var mega = $('.menu-item-mega-parent');
    		mega.on({
    			mouseover: function() {
    				$('html, body').css({'overflow': 'hidden','height': '100%'});
    			},
    			mouseleave: function() {
    				$('html, body').css({ 
    				'overflow-x': 'hidden', 
    				'overflow-y': 'scroll', 
      				'height': 'auto',
      			   });
    			}
    		});
    	}
    	a();
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'no_scroll_on_mega_div_open');

    Can be closed

    #1186201

    Topic: Tab content on mobile

    in forum Enfold
    B
    Participant

    Hello, I have tabbed content link below.

    Is there a way on mobile so that when the tabs are clicked it auto scrolls to the start of the content? The tabs take up so much height space that when clicked I don’t think its obvious for the user that they need to scroll down to view the content

    #1184425

    Hi,

    Thank you for the info.

    You can add this css code to adjust the position of the sub menu when the header shrinks or on window scroll.

    .html_header_top .header_color.header-scrolled .main_menu ul:first-child > li > ul {
    	top: auto;
    }

    Best regards,
    Ismael

Viewing 30 results - 271 through 300 (of 1,181 total)