Forum Replies Created

Viewing 30 posts - 5,791 through 5,820 (of 11,983 total)
  • Author
    Posts
  • Was this advice enough to solve your problem or do you need support?
    In this case I would have to know more about your setting – the best thing would be to see the page it’s about.
    ( Think of : i’m participant as you are – so i do not see private content in your postings )

    what kind of header-settings do you have: logo left menu right or something else?
    what kind of content – an image as “second logo” ?

    so – the script responsible for shrinking behavior is: avia-snippet-sticky-header.js
    you can have a child-theme script instead of loading the parent one by:

    add_action( 'wp_enqueue_scripts', 'wp_change_sticky_header_script', 100 );
    function wp_change_sticky_header_script() {
       wp_deregister_script( 'avia-sticky-header' );
       wp_enqueue_script( 'avia-sticky-header-child', get_stylesheet_directory_uri().'/js/avia-snippet-sticky-header.js', array('avia-default'), $vn, true);
    }
    

    This script takes care of the shrink factor and other settings – for example the varialble line-height while shrinking.
    In the function avia_header_size there is the calculation of the effect – the trick will be to include the new element to be calculated f.e. in height and width.

    This is only a crutch; it would certainly be better if the corresponding image was inserted at a suitable place. For the markup it is not unimportant whether I create the post/portfolio including color-sections or other full-width elements or not.

    So you have to check in each individual case if it would be better to put the post-image into the appropriate container.

    in reply to: Curved section dividers #1212353

    some thoughts on it:
    https://kriesi.at/support/topic/diagonal-border-angle/#post-1138048

    for color-sections the best position to have real divider is as mentioned in the link above:

    <div class="avia-section  …
      <svg  (  inline for the top ) > …</svg>
         <div class="container">… </div>
       <svg  ( inline  for the bottom ) >… </svg>
    </div>

    the reason for using svg is easy : these can be influenced to react responsive – and if they use only vectors they are allways sharp, they are extremly small in file-size, and you can set fill-colors for the needed transition. They can be animated : see here on the footer: https://webers-testseite.de/pureinstall/fullwidth-slider/

    you can even use them on sliders – as you can see in the link above. But you have to choose a better place to insert them to markup.

    in reply to: Widget inside burger menu #1212287

    i was looking for a php hook – but found no place to inject a widget area.
    the main place where the hamburger is prepared is avia.js. – And to have a whole child-theme avia.js is no good alternative.

    maybe Günter knows a better way.

    in reply to: Transition speed in slider ALB. #1212267

    everything is as mentioned above – only onething i recognized on playing with the effect : the transitionSpeed is ok from slide3 to slide1 on sliding.
    But with the fading the slides the bug remains. This is now that I have set it to 8000ms and linear animation more than obvious.
    In all browsers!

    Make your browser window a bit narrower so that you can see both sliders at the same time. It is also clear that they do not run in the same rhythm.

    But that doesn’t bother me, the transition from end to start slide certainly does.

    https://webers-testseite.de/pureinstall/fullwidth-slider/

    in reply to: Grid Rows with alternating background colors by CSS #1212183

    aha – also nur die container gesamt .
    Deshalb hat es auch nicht mit nth-child geklappt. Wahrscheinlich hattest du noch andere Container dazwischen – die zählen bei child alle mit.
    nth-of-type ist selektiver.

    in reply to: Grid Rows with alternating background colors by CSS #1212168

    maybe – even if you could not create a simple example or post the page:

    This will give you a hint to the right way :

    #main .av-layout-grid-container:nth-of-type(odd) .flex_cell:nth-of-type(even) {
     background: #900 !important;    
    }
    #main .av-layout-grid-container:nth-of-type(odd) .flex_cell:nth-of-type(even) * {
     color: #fff !important;    
    }
    #main .av-layout-grid-container:nth-of-type(even) .flex_cell:nth-of-type(odd) {
     background: #900 !important;    
    }
    #main .av-layout-grid-container:nth-of-type(even) .flex_cell:nth-of-type(odd) * {
     color: #fff !important;    
    }

    https://webers-testseite.de/colorize-grids/

    On responsive breakpoint you had to style them with other rules :

    in reply to: Grid Rows with alternating background colors by CSS #1212158

    as participant i could not see your link – but tell me if all grid-rows have the same grid cell count?
    If grid-rows under each other do you like to change the sequence – to form a kind of checkerboard pattern?

    in reply to: Widget inside burger menu #1211871

    it seems that the each(function… is not necessary so try first :
    ( from my understanding this will be ok – but it works without too! )

    function move_header_widget_to_burger(){
    ?>
    <script>
    (function($){
    	$('#header_main .widget').css('display' , 'none');
    	$('#header').one('click', '.av-main-nav-wrap', function() {
    		var isMobile  = $('.av-burger-menu-main').css('display');
    		$('#top #av-burger-menu-ul').css({
    			'display' : 'block',
    			'height' : 'auto',
    			'vertical-align' : 'top',
    			'padding' : '140px 0 0',
    		});
    		var burger_widget = $('#header_main .widget').detach();
    		burger_widget.appendTo('.av-burger-overlay-inner').css({
    			'display' : 'block',
    			'position': 'relative',
    			'width': '94%',
    			'text-align': 'left',
    			'margin-left': '3%',
    			'border-top': '1px dashed #333',
    		});
    	});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'move_header_widget_to_burger');
    in reply to: Error when editing with ALB #1211868

    did you choose on enfold options to load jQuery under Performance: “Load jQuery in your footer”
    After deselcting that option – refresh all cachings and merging etc. pp.

    I can’t quite understand your argument. However more than pointing out the possibility of solving the problem by Enfold methods I cannot do.

    in reply to: Widget inside burger menu #1211849

    well i used the hook: ava_main_header to create a header widget

    this to child-theme functions.php

    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
      dynamic_sidebar( 'header' );
    }

    and afterwards i moved the containers in Markup.

    function move_header_widget_to_burger(){
    ?>
    <script>
    (function($){
    	$('#header_main .widget').css('display' , 'none');
    	$('#header').one('click', '.av-main-nav-wrap', function() {
    		var isMobile  = $('.av-burger-menu-main').css('display');
    		$('#top #av-burger-menu-ul').css({
    			'display' : 'block',
    			'height' : 'auto',
    			'vertical-align' : 'top',
    			'padding' : '140px 0 0',
    		});
    		var burger_widget = $('#header_main .widget').detach();
    		
    		burger_widget.each(function() {
    			$(this).appendTo('.av-burger-overlay-inner').css({
    				'display' : 'block',
    				'position': 'relative',
    				'width': '94%',
    				'text-align': 'left',
    				'margin-left': '3%',
    				'border-top': '1px dashed #333',
    			});
    		});
    	});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'move_header_widget_to_burger');

    see here: https://webers-testseite.de/pureinstall/

    The enfold calculation of the new size formats will be done on upload.
    Those Optimising Plugins will edit these existing images. So for enfold there will be no difference if they find the same nomenklatur for them.

    I suppose that once you have run through such an optimizer the images will stay that way even after deactivating or deleting the plugin.
    Isn’t there a free contingent of them, which can be processed? I would test that first.

    _______________

    The snippet above will take effect immediately on upload. The images that are already there I have recalculated with Force Regenerate Thumbnails.
    The benefit of that plugin is that it deletes the old thumnails not needed ( f.e. if you change the theme – there will be other sizes and some sizes are not needed – or if you follow the link of Victoria that you exclude some sizes from being calculated. )

    See here https://kriesi.at/support/topic/disable-creation-of-multiple-file-resoltuions-on-media-upload/#post-1172543

    You can influence what sizes are calculated on upload.

    Sometimes you notice that some image sizes are not needed at all for an Enfold installation, and in some cases you can even work with other formats. Then you could save yourself the trouble of generating these file sizes.

    ___________

    Have a look at that plugin too – seems to be a very usefull one:
    https://de.wordpress.org/plugins/simple-image-sizes/

    • This reply was modified 5 years, 9 months ago by Guenni007.
    in reply to: Lightbox Change Event or Click Handler? #1211684

    Yes – but what is the thing you like to build?
    we can have solutions if we know what you like to do.

    different markup, Title styling, gallery-groups etc. pp.

    see here a better page with complex influence on popup high selectiv for that masonry – for description: https://webers-testseite.de/pureinstall/masonry-gallery/
    selector is a custom-class and masonry with lightbox : .av-masonry.lightbox-with-description a.av-masonry-entry.lightbox-added

    • This reply was modified 5 years, 9 months ago by Guenni007.

    I’m trying everything I can to minimize page load times and lighten I/O. Images seem to be a big thing (as expected). If I, for example, upload a 2,048 x 2,048 original image, but then tell Enfold that it is a 640 x 640 image on the post, is it being resized (and served as a smaller file size)? Or am I just defining the “window” in which Enfold displays that big file?

    these images are resized and should be less file size. BUT:

    on functions-enfold.php:

    if( ! function_exists( 'av_return_100' ) )
    {
    	/**
    	* Sets the default image to 100% quality for more beautiful images when used in conjunction with img optimization plugins
    	*
    	* @since 4.3
    	* @added_by Kriesi
    	*/
    	function av_return_100(){ return 100; }
    	add_filter('jpeg_quality', 'av_return_100');
    	add_filter('wp_editor_set_quality', 'av_return_100');
    }

    Enfold takes the original image on upload, unpacks it and calculates new smaller sizes, but without compression level!
    That is f.e. like you save a jpg on photoshop without compressing on quality level 10 !

    This is meant very nicely, but leads to the fact that optimized jpgs uploaded in their original size sometimes have a smaller file size than the recalculated files which are smaller in dimension.

    This is not necessarily the case for a 640px image, but for the sizes : “featured”, “featured_large” and “extra_large” this is often the rule.

    This little snippet in child-theme functions.php :

      function av_return_100(){ return 65; }
      add_filter('jpeg_quality', 'av_return_100');
      add_filter('wp_editor_set_quality', 'av_return_100');

    65% seems to be a good compromise – but this depends of course on your pictures and your requirements for sharpness.

    This small snippet reduces the quality of the recalculated images during upload.
    but unfortunately it has no effect afterwards.
    Therefore you would have to recalculate the thumbnails. There are several plugins you can use for this.
    Regenerate thumbnails etc.

    in reply to: Align socket social bookmarks left on mobile devices #1211672

    yes – and if you like to have a little spacing between these add into that media querry from above:

    #socket .container > * {
        margin-bottom: 20px;
    }

    the selector > * indicates that only the first level childs are influenced.
    If you have a lot of social media links – so that there will be two or more lines – we had to find a different way.

    sending E-Mails via smtp is one way- and on some reasons this is much saver than via php.
    But you can try:
    to set so-called spf records at your hoster.
    The background is that the e-mail client of the recipient now expects an incomming e-mail from server: fastdetect.com. But this is almost never the case. Because your hoster has its own servers for sending e-mails. With my provider this is for example: server-he.de (hosteurope).
    With Godaddy I think it is : secureserver.net
    The spf record should now declare this as a secure server for sending e-mails from fastdetect.com.
    Most hosters create this automatically. I don’t know now how it is with the individual hosters.

    https://www.bookerville.com/Set-SPF-Record-for-Domain-Registered-with-GoDaddy

    i do not believe it is the advanced layerslider if you realy have the newest Enfold. Since 4.6.3 Günter implemented a check for that.
    And you have to use a filter to have an update info on that:
    https://kriesi.at/support/topic/enfold-causes-wrong-update-markers/page/2/#post-1162508

    in reply to: Hamburger Menu with additional Menu Item on header #1211598

    if you comment this out or get rid of it:
    see comment in css above:
    /******* 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;
    }

    these two 1/1 will have no distance to each other.

    the rule:

    #covid-beyond .flex_cell_inner .flex_column:nth-child(2) {
        margin-top: -2px !important;
    }

    will shift the two border – one over the other
    but in principle you can control each border individually.
    border-width: 2px 0 means border-width above and below 2px ; left and right 0. the nomenclature works as usual
    border-width: upper right bottom left
    and the border-color is the analog sequence
    border-color: red blue green yellow

    in reply to: background and safari 13+ #1211358

    The background-color of the masonry comes from a different place – please add to your quick css:
    how to make that site specific or with a custom-class you will know that.
    A man how works with clip-path polygon will find a solution ;)

    first add to the one rule: background-color: transparent !important

    .page-id-398 :not(#av-sc-masonry-gallery-1):not(.av-inner-masonry).main_color {
        background-image: url(https://davidemarzullo.it/wp-content/uploads/2020/04/main-background-90.jpg);
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-color: transparent !important;
    }

    Then the rest in addition

    .main_color .av-masonry, 
    .main_color .av-masonry-pagination, 
    .main_color .av-masonry-pagination:hover, 
    .main_color .av-masonry-outerimage-container {
        background-color: transparent !important;
    }

    Annotation: maybe in this case it would be better not to go to the class main-color but to create a before container to #main with your

    • This reply was modified 5 years, 9 months ago by Guenni007.
    in reply to: background and safari 13+ #1211356

    this effect is your choice i guess:

    in reply to: Transition speed in slider ALB. #1211262

    that would be great to have that beta – but do you know why :

    But the problem is not solved yet, why the transition speed from the last slide to the first slide stays at 900ms even though I changed the value at the corresponding place in the slideshow.js of the parent theme. …

    https://kriesi.at/support/topic/transition-speed-in-slider-alb/#post-1211061

    in reply to: Title TAG on Main Logo in HEADER #1211258

    No – it is not solved at the end. Just for title if he will hard-code the parent theme ( Don’t know why the filter avf_logo_title is missing – that would be nice to have on default ) – and the alternate logo is not solved yet.
    But i hope that it will be solved on the update comming soon. See here: https://kriesi.at/support/topic/alt-for-transparent-header-image/page/2/#post-1199225

    in reply to: Hamburger Menu with additional Menu Item on header #1211255

    i transfered it this way to another playground: https://webers-testseite.de/pureinstall/tada/
    and changed abit the css and had to adjust the media querry breakpoints due to different font-sizes etc. pp

    in reply to: Hamburger Menu with additional Menu Item on header #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]
    
    in reply to: background and safari 13+ #1211075

    you can see my solution here : https://kriesi.at/support/topic/theme-is-shaking-a-lot-in-safari/

    to see the problem i will remove the css for the background-attachment size to zero. So that there will be both ( above each other – with a little shift ) the pseudo-content in the before and the attachment image. ( the jittering one is the default attachment )

    what i realised too : if you use a normal mouse ( not the magic one from Mac – this is a high resolution mouse ) like a logitech wheel mouse the effect is less.

    The crux is : read about background-attachment : fixed in combination with background-size: cover and safari.

    https://forums.developer.apple.com/thread/99883

    See https://webers-testseite.de/

    to be precise : what you see on the film are both images
    1) on top the image as background of a pseudo :before container that has postion fixed
    2) behind the enfold container with background-image with background-attachment: fixed

    Edit: i removed the outcommenting to have only fixed pseudo container now – i do have a reputation to uphold ;)

    • This reply was modified 5 years, 9 months ago by Guenni007.
    in reply to: paralax slider shaking badly in safari #1211072

    your example page could not be reached in that moment.
    But when seeing the page – i suggest that it is based on the demo: https://kriesi.at/themes/enfold-app/

    i can only see on your page: webdesign-den-haag these images with background-attachment : fixed.
    This is something that does not work in Safari !
    Could you please read here a bit further on that topic: https://kriesi.at/support/topic/theme-is-shaking-a-lot-in-safari/

    because the postion: fixed is not as buggy as the above-mentioned background-attachment: fixed in Safari
    the trick is to replace these.

    See my testpage: https://webers-testseite.de/
    for invesitgation purpose : i have both images to show now. The jittering one is the attachment the other fixed is the pseudo-content.
    the only problem stayes on advanced layerslider.

    • This reply was modified 5 years, 9 months ago by Guenni007.
    in reply to: Title TAG on Main Logo in HEADER #1211063

    Ah sorry – that with the title will not work – i had changed my functions-set-avia-frontend.php to have that extra filter
    on line 564 you see that avf_logo_alt Filter – i inserted an analogon with title.

    i replaced the line 566:

    $title			= '';
    

    with:

    $title			= apply_filters( 'avf_logo_title', get_the_title( $logo_id ) );
    

    sorry.

    in reply to: Transition speed in slider ALB. #1211061

    The one with the input field would be the most elegant solution.

    But the problem is not solved yet, why the transition speed from the last slide to the first slide remains at 900ms even though I changed the value at the corresponding place in the slideshow.js of the parent theme

    you can see it here: https://webers-testseite.de/pureinstall/fullwidth-slider/

    it is set on parent-theme slidershow.js to 5000ms ( extreme but to better see the difference )
    but the change from 3 to 1 Slide it is much faster – i guess 900ms.

    No caching tools – no merging on that page.

    • This reply was modified 5 years, 9 months ago by Guenni007.
Viewing 30 posts - 5,791 through 5,820 (of 11,983 total)