Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: Tab Section height problem still exists after update #804171

    Victoria; thanks for reply, unfortunately only me works 4.0.5 works perfect, keep for the moment this vesion until the next release.

    :)
    Thx

    • This reply was modified 7 years, 5 months ago by Nazka.
    in reply to: Tab Section height problem still exists after update #802337

    I have the same problem height on tab and it does not work in firefox.
    solution given funtions.php in another post solves the problem of tab visualization but not size tab

    function ava_custom_script_fix(){
    ?>
    <script>
    (function($){
    	function a() {
    		$('.av-tab-section-container').bind('click', '.av-section-tab-title', function() {
    			var active  = $(this).find('.av-active-tab-title'),
    				number  = active.data('av-tab-section-title'),
    				content = $(this).find('.av-layout-tab[data-av-tab-section-content='+ number +']').children('.av-layout-tab-inner'),
    				oheight = content.outerHeight(true) + active.outerHeight(true) + 100;
    
    				$(this).find('.av-tab-section-outer-container').css('max-height', oheight);
    		});
    
    		$('.av-section-tab-title:eq(0)').trigger('click');
    	}
    
        a();
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script_fix');

    T_T

Viewing 2 posts - 1 through 2 (of 2 total)