Forum Replies Created

Viewing 30 posts - 6,271 through 6,300 (of 11,866 total)
  • Author
    Posts
  • in reply to: Making a sidebar widget sticky #1147210

    sorry – wrong topic – ( you shouldn’t have more than one open. )

    in reply to: Magnific popup in burger menu #1147204

    But maybe you can do it with one common class on those items:

    function popup_inline() { 
    ?>
    <script type="text/javascript">
    (function($) {
    	$(window).load(function(){
    	  $('.menu-item-17225 a, .menu-item-17226 a, .popup-button a, .archive-button, .header-button-1, .header-button-2').addClass('open-popup-link');
    	  $('.open-popup-link').magnificPopup({
    	    type:'inline',
    	    midClick: true
    	  }); 
    	});
    })(jQuery);
    </script>
    <?php }
    add_action('wp_footer', 'popup_inline');
    in reply to: Magnific popup in burger menu #1147200

    Dear Bluehoop – here on the inputfield there are above some tags you can place.
    It would be nice if you use for code the code tag.
    You can do this either by click on code – paste your code and click again on code button.
    Or past in your code and activate all of it and press once the code button.

    It is difficult to check a code if we can’t see if, for example, the quotes are correct.
    If I were to copy/paste your code now, it wouldn’t be usable because the quotes aren’t the usual code quotes.

    Now : i do not think that you can row the items – comma separated – in this way.
    i think you had to use the items option – like in Documentation said: https://dimsemenov.com/plugins/magnific-popup/documentation.html#public_methods

    in reply to: Create a slide (texts) in top bar #1147167

    by the way : because i see in your example the top-navigation on the left – this is then : av_secondary_left
    so it depends the css code on your constallation

    if you like to choose the headline rotator with typewriter animation – and you don’t like the change between the paragraphs with that background-color you can overwrite the style this way:

    .av-marked-text .av-rotator-text-single{
    	background-color: transparent !important
    }

    or a different color

    • This reply was modified 6 years, 2 months ago by Guenni007.
    in reply to: Create a slide (texts) in top bar #1147161

    you can take the same hook: avia_meta_header

    add_action( 'avia_meta_header', 'enfold_customization_header1_widget_area' );
    function enfold_customization_header1_widget_area() {
      dynamic_sidebar( 'headermeta' );
    }

    add a new widget named: headermeta Edit: maybe you have not read the post here well.

    then some quick css – depends on your header looks like:

    .av_secondary_left .sub_menu {
      width: 80%;
      display: flex;
      flex-flow: wrap row;
      width: 80%;
      display: flex;
      flex-flow: wrap row;
    }
    
    #top .sub_menu > ul {
      float: none;
    }
    
    #header_meta .widget {
      float: left;
      padding: 0;
      margin: 0;
      left: 50%;
      transform: translateX(-50%);
    }
    
    @media only screen and (min-width: 767px) {
      #header_meta .widget * {
        color: #fff !important;
      }
    }

    maybe you better remove the usual margins in the header_meta area – and in between 768px and 990px the header_meta widget area is on the right:

    @media only screen and (min-width: 767px) and (max-width: 990px) {
      .av_secondary_left .sub_menu {
        width: 100%;
        justify-content: space-between;
        padding-right: 0;
      }
    
      #header_meta .widget {
        transform: none;
        float: right;
        left: auto;
        right: 0 !important;
      }
    }
    
    #header_meta .widget p {
      margin-top: 0 !important;
    }
    
    #header_meta .widget .widgettitle {
      margin-bottom: 0;
    }

    Result: https://webers-testseite.de/guenni/datenschutzerklaerung/

    have you ever pressed that button.
    that is an easy way to get it – and after finishing your layout – there are on the top right three buttons to close that window .

    in reply to: LayerSlider 6 unable to deactivate, delete or update #1146875

    it seems that the above code blocks all plugins – do not know why

    in reply to: Width of page #1146826

    if this is all your Quick CSS – then why is clear for above reasons.
    there are some closing brackets missing – each opening bracket must have a closing bracket.

    @media only screen and (max-width: 767px) {
    	.av_textblock_section .avia_textblock p * {
    	font-size: 12px !important
    	}
    }
    @media only screen and (max-width: 767px) {
    	.responsive #scroll-top-link {
    	display: block!important;
    	}
    }


    But
    because the media query is the same – you can combine them to:

    @media only screen and (max-width: 767px) {
    	.av_textblock_section .avia_textblock p * {
    	font-size: 12px !important
    	}
    	.responsive #scroll-top-link {
    	display: block!important;
    	}
    }


    Edit

    Actually I think as someone who wanted to help you with the solution I have a certain right to know if and how you solved the problem.
    Unfortunately the topic was already closed – but maybe you’ll come back to read this.

    in reply to: Width of page #1146771

    it sound for me – as if you entered a css rule in quick css that is not well formated.
    A missing closing bracket e.g. on a media-query rule could be happen easily.
    If you can post your quick css – we can see what happens

    My guess is based on the fact that on Enfold these setting below are just behind your quick css rules
    if there is on top a missing closing bracket – every rule after that has no effect.

    .container {width:100%;} .container .av-content-small.units {width:75%; }
    			
    	 .responsive .boxed#top , .responsive.html_boxed.html_header_sticky #header, 
    	 .responsive.html_boxed.html_header_transparency #header{ width: 1310px; max-width:90%; }
    	 .responsive .container{ max-width: 1310px; }
    			
    #top #wrap_all .av-main-nav ul > li > a, #top #wrap_all .avia_mega_div, #top #wrap_all .avia_mega_div ul, #top #wrap_all .av-main-nav ul ul{color:#404040;background-color:#cfcfcf;font-size:14px;}
    #top #header .av-main-nav > li > a{color:#000000;}
    #top #header .av-main-nav > li > a .avia-menu-text, #top #header .av-main-nav > li > a .avia-menu-subtext{color: #000000;}

    and you see that jordans rule above is part of this enfold options css under the quick css.

    in reply to: Create a slide (texts) in top bar #1146770

    if you had a top menu then the activation is done and that little snippet of avia_meta_header is unnecessary:
    this you can erase : add_filter( 'avf_execute_avia_meta_header', '__return_true', 10, 1);

    the css will depend on the position of top menu – this here is for left position:

    #header_meta .av-rotator-container {
        font-size: 24px !important;
        position: relative;
        left: 50%;
        float: left !important;
        transform: translateX(-50%);
        top: -10px;
    }
    
    .av_secondary_left .sub_menu {
      width: 80%;
    }
    
    #header_meta span {
        font-size: 30px;
    }
    in reply to: Create a slide (texts) in top bar #1146631

    there is a hook if the sub-menu is present.
    – but if we don’t want sub-menu on top we can activate it nevertheless via filter:

    add_filter( 'avf_execute_avia_meta_header', '__return_true', 10, 1);
    add_action('avia_meta_header', function() {
    if(is_page(3)){
    echo do_shortcode("[av_headline_rotator before_rotating='' after_rotating='' interval='5' animation='' margin='' margin_sync='true' tag='h2' size='36' align='center' custom_title='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' alb_description='' id='' custom_class='' av_uid='av-k1gw6wo0' admin_preview_bg='']
    	[av_rotator_item title='today we offer abc' link='' linktarget='' custom_title='' av_uid='av-it587']
    	[av_rotator_item title='but the whole week it is' link='' linktarget='' custom_title='' av_uid='av-egknj']
    	[av_rotator_item title='&rArr; another line to present' link='' linktarget='' custom_title='' av_uid='av-6u493']
    [/av_headline_rotator]");
    };
    });

    a little css to position it:

    #header_meta .sub_menu {
        font-size: 24px !important;
        position: relative;
        left: 50%;
        float: left !important;
        transform: translateX(-50%);
        top: 0;
    }
    
    #header_meta span {
        font-size: 30px;
    }

    see testpage: https://webers-testseite.de/guenni/datenschutzerklaerung/

    in reply to: Text Block Custom CSS Class #1146526

    there is a little error in the textblock.php

    https://kriesi.at/support/topic/4-6-3-1-issues/#post-1144794

    here is a corrected textblock.php : Link

    in reply to: Enfold 4.6.3.1 selfhosted Video in Lightbox #1146523

    you can close this because it seems to be better posted there – because i think borlabs – is borlabs himself ;)
    https://kriesi.at/support/topic/code-block-element-doesnt-handle-shortcodes-properly/

    in reply to: Full screen slider display #1146522

    If you do that all testings : do you allways refresh all caching tools ( including autoptimizer , enfold merging etc.) ?

    in reply to: Code Block Element doesn't handle shortcodes properly #1146502

    Issue is solved with Borlabs Cookie Version : 2.1.3

    in reply to: masonry gallery issue when mage is open #1146498

    small addendum: sometimes there are other elements between the mfp wrapper and the wrap_all. So wrap_all is no longer a direct neighbour.
    Therefore you should rather use this one:

     /* instead of the code ( direct neighbor ) */
    .mfp-wrap + #wrap_all {
      position: fixed !important ;
    }
    /* this here ( General Sibling Selector ) */
    .mfp-wrap ~ #wrap_all {
      position: fixed !important ;
    }


    so it is now:

     .mfp-zoom-in.mfp-ready.mfp-bg, .mfp-zoom-in.mfp-ready .mfp-preloader {
          opacity: 0.8;
      }
    
      .mfp-content {
        position: fixed !important;
        top: 50%;
        left: 50%;
        transform: translate(-50% , -50%);
        overflow: hidden;
      }
    
      .mfp-arrow {
        position: fixed !important
      }
    
      .mfp-wrap ~ #wrap_all {
        position: fixed !important ;
      }
    
      img.mfp-img {
        max-width: 70vw;  
        padding: 10px 0 !important;  
      }

    PS : it is clear that if you put it in a media query only for screens bigger than 768px – that the code does not work below this screen-width

    in reply to: Code Block Element doesn't handle shortcodes properly #1146486

    i tested to replace the new output in 4.6.3.1 in Enfold.php of Borlabs
    :

    
    $output = "<div {$meta['custom_el_id']} class='avia-video avia-video-{$format} {$html} {$custom_class} {$av_display_classes}' {$style} {$markup} data-original_url='{$src}' >{$output}</div>";
    

    then it runs as expected

    in reply to: Code Block Element doesn't handle shortcodes properly #1146466

    on : ‎⁨ ⁨borlabs-cookie⁩ ▸ ⁨classes⁩ ▸ ⁨Cookie⁩ ▸ ⁨Frontend⁩ in Frontend.php

    if I comment out the enfold lines the function runs ! :

    line 116:

    // Enfold
    if (function_exists('avia_register_frontend_scripts')) {
        add_action('avf_sc_video_output', [ThirdParty\Themes\Enfold::getInstance(), 'modifyVideoOutput'], 100, 6);
    } 

    so there must be something in the Enfold.php that blocks selfhosted Videos.
    borlabs-cookie⁩ ▸ ⁨classes⁩ ▸ ⁨Cookie⁩ ▸ ⁨Frontend⁩ ▸ ⁨ThirdParty⁩ ▸ ⁨Themes⁩ ▸ Enfold.php

    in reply to: Code Block Element doesn't handle shortcodes properly #1146441

    on Enfold 4.6.3.1 i have troubles with the self-hosted Video and new lightbox feature of Video ALB. Does it possibly have to do with this subject here?
    When i deactivate the plugin, the video in lightbox works.

    in reply to: Enfold 4.6.3.1 selfhosted Video in Lightbox #1146435

    Edit : must be Borlabs Cookie Plugin. Sorry – had never Problems so far with this nice Cookie Consent Plugin.
    I check now what setting of Borlabs it is.

    in reply to: Enfold 4.6.3.1 selfhosted Video in Lightbox #1146407

    you can see here on top the video plays – but the lightbox video on the bottom does not do it:
    https://webers-testseite.de/guenni/selfhosted-video-as-background/

    in reply to: Full screen slider display #1146271

    no one hampers you to calculate other width: f.e.

    for my example page:
    because it is a grid-row after the slider the calculation it a bit different from color-section as follower.

    @media only screen and (max-width:989px) {
      #united_slider .avia-slideshow.av_fullscreen {
          width: calc(100vw - 16%) !important;
          height: 45vw !important;
          left: 50%;
          transform: translateX(-50%);
      }
    }
    in reply to: Full screen slider display #1146194
    in reply to: Full screen slider display #1146184

    this is for your problem the best construction.
    Take only a fullscreen slider – set its screenoptions to display everywhere !!!

    :https://webers-testseite.de/slider-depending-on-screenwidth/

    there is even for you a better moving script for the slider before the header container with a little performance optimizing debounce function.
    Enfold itself has a debounce function included but i didn’t know how to use it for this function.

    Well – under the Masonry there is the Grid – and that worked too.

    in reply to: Line break not working in front end #1146166

    The autop function and the removal of line breaks is a WordPress peculiarity. I’ll just show you how to get around it. That’s all.
    The one with the small plugin is to be set up once, then also the one who manages to make a font bold can insert such a linebreak into the text editor, which doesn’t disappear.

    in reply to: Line break not working in front end #1146117

    you can add in text modus : <br class="noclear"/>

    With a little plugin you can create your own buttons on visual mode that inserted these breaks f.e.
    ( Visual Editor Custom Buttons)
    you can have then own icons on those buttons etc.:

    in reply to: Create a slide (texts) in top bar #1145956

    well i do not see your site – but if it is not to complicated – maybe only text – with links
    then you can use the headline-rotator shortcode as Rikard said and maybe a hook to embed this.

    https://webers-testseite.de/guenni/datenschutzerklaerung/
    it is simply done via child-theme functions.php and on styled before on a post or page. to get the shortcode:
    here just for the page-id-3:

    in this manner: echo do_shortcode(“…”);

    add_action('ava_main_header', function() {
    if(is_page(3)){
    echo do_shortcode("[av_headline_rotator before_rotating='' after_rotating='' interval='5' animation='' margin='' margin_sync='true' tag='h2' size='36' align='center' custom_title='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' alb_description='' id='' custom_class='' av_uid='av-k1gw6wo0' admin_preview_bg='']
    	[av_rotator_item title='today we offer abc' link='' linktarget='' custom_title='' av_uid='av-it587']
    	[av_rotator_item title='but the whole week it is' link='' linktarget='' custom_title='' av_uid='av-egknj']
    	[av_rotator_item title='another line to present' link='' linktarget='' custom_title='' av_uid='av-6u493']
    [/av_headline_rotator]");
    };
    });

    here is a little description on how you get this shortcode: Link

    in reply to: Google Maps wird unter MacOS Safari nicht angezeigt #1145923

    Yes – seems to work on his site!

    in reply to: Website totally crashed after Theme-Update #1145879

    From Participant to Participant:

    I am waiting since 47 hours now

    Actually, I wanted to look at your code; but when I read something like this, I move on to the nearest problem.

Viewing 30 posts - 6,271 through 6,300 (of 11,866 total)