Forum Replies Created

Viewing 30 posts - 8,431 through 8,460 (of 11,877 total)
  • Author
    Posts
  • in reply to: Slider really strange since the new release #951432

    no – I have not observed that yet. Yes the starting of selfhosted video was a problem too – but on my av-helper-slideshow.php the fix was integrated already.
    I thought that irdh has one of my edited alb elements used – and after update the code was changed so much that the old version does not do what was intended to do.
    I have always a little time-shift between these changings but they will come soon as alway here: https://webers-testseite.de/edited-enfold-alb-elements/

    actually I think it’s a pity that these small improvements are not taken over into the code, because for example I think it makes sense to determine the h-tag in the captions, or on icon-box or icon-list element.
    Or to have an anchor alternative to the color section. So i made my hr with ID Option – this could be even used when sidebar is active.

    in reply to: Selfhosted Video and Loop #951422

    yes that is your old instruction that works – and the selfhosted video starts with that fix ( avia_html5_video_embed and avia_slideshow_video_helper class ). But the selfhosted video only runs once. I think the normal behavior would be to loop.
    so that was my topic here – is there a fix for the loop function?

    in reply to: Slider really strange since the new release #951173

    oh – so sorry – that was my fault. ( i edit it above too)

    erase the functions.php code you have inserted – that was to substitute the shortcodes.js file:
    this is the code you need to substitute the shortcodes. – yes the place you uploaded them was correct.
    Sometimes you have to edit those sliders again – just open and save.

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths){
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
      return $paths;
    }

    there are ways to get rid of it – but the easiest way would be if Günter just put in that little code to avia.js to avoid generating for each .logo a nav:
    instead of:
    menu2.insertAfter(logo_container.find('.logo'));
    that:
    menu2.insertAfter(logo_container.find('.logo:first'));
    click to enlarge:

    the method via filter: avf_logo_final_output is good to have two or three logos in the header: https://webers-testseite.de/cynthia/mille-deco/

    but there are multiple identical IDs than on that page.

    in reply to: Change Color body Style on one page #951100

    All ok now – i got on dynamic_avia two merged css files : after beautfying i can extract the quick css again.

    by the way : if we do not mark that option on performance: “Delete old CSS and JS files?” there are “backups” of the old settings?
    how many will there be saved? that was my salvation now – but it should be limited to a certain number, so that the folder does not inflate

    in reply to: Change Color body Style on one page #951094

    No – please erase that answer- it messes all up in that test page.
    All settings are gone ( except the functions.php entries) but quick css and logo and and.

    PS : no worry it is a test-page so not so important.

    in reply to: Mysterious Sad Face at the top of website #951081

    This is a place on source code where normaly no-one comes to.

    Did you have an own edited footer.php file ?
    after that code here: <div id="fb-root"></div>
    there was something placed by wp-stats

    in reply to: SVG Logo #951069

    but you must know your path in your svg file.
    you can open them with a good text-editor like notepad ++ on pc or sublime-text on mac os

    in reply to: SVG Logo #951059

    for example : the BONN is a path on that svg and that path has class st3:
    so on shrinking the opacity is changed from 1 to 0 in one second

    .st3 {
        transition: all 1s ease-in-out;
        opacity: 1
    }
    .header-scrolled .st3 {
        transition: all 1s ease-in-out;
        opacity: 0
    }

    in reply to: SVG Logo #951058

    Aha .
    on advanced settings you can set automatically set class – but i prefer to have: css class to target
    i use a bit meaningful like: change-to-svg

    to have this class added to the enfold logo – i put this to functions.php of my child-theme:

    function add_class_to_logo_img(){
    ?>
    <script>
      (function( $ ) {
          $(function() {
    		$('.logo img').addClass('change-to-svg');
          });
      }(jQuery)); 
    </script>
    <?php
    }
    add_action('wp_head', 'add_class_to_logo_img');

    to force the svg to shrink with the header – this comes to quick css:

    .logo,  .logo a {  display: inline-flex}
    
    .logo svg { width: 450px;
     transition: all 1s ease-in-out;
    }

    transition all is for the effects i set in quick css

    • This reply was modified 7 years, 8 months ago by Guenni007.
    in reply to: SVG Logo #951052

    Well these advanced settings might be nice to have.
    See here and look what happens to the svg on shrinking – or on making the screenwidth smaller !
    https://webers-testseite.de/cynthia/

    You can handle path of the svg on hovering f.e to color them different etc.

    in reply to: SVG Logo #951050

    A link only to see what happend is nice.
    If your svg has no implementation of widht and height – the wordpress will interpret it as 0x0 px image.
    If you define a width for it :
    .logo img { width: 350px } it will be shown.
    or did you use the replacement option with svg Support – means is it a real svg in your html code?

    And if i see your hint with the autoplay.
    if you load the video with options – f.e. as iframe.
    only the first option is with questionmark ? all the other following options have to be added by &

    so videolink?autoplay=1&loop=1&iframe=true etc
    One exception is with youtube videos – if the link is with: watch?v= so allthough there is a ? the first option after video link must have the ? then &

    in reply to: Slider really strange since the new release #951020

    By the way: this code here is to replace the parent ALB with the Child-Theme ALB:

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths){
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
      return $paths;
    }

    the other code is to dynamically replace some tags – and has nothing to do with the caption title tags

    function replace_tags_with_tags(){
    ?>
    <script>
      (function($) {       
          function replaceElementTag(targetSelector, newTagString) {
            $(targetSelector).each(function(){
              var newElem = $(newTagString, {html: $(this).html()});
              $.each(this.attributes, function() {
                newElem.attr(this.name, this.value);
              });
              $(this).replaceWith(newElem);
            });
          }
        
          replaceElementTag('h3.widgettitle', '<h4></h4>'); // hier kann man nun weitere anfügen immer durch semicolon getrennt
        
      }(jQuery)); 
    </script>
    <?php
    }
    add_action('wp_footer', 'replace_tags_with_tags');
    in reply to: Slider really strange since the new release #951019

    well i guess you are one of those who uses my edited alb elements. Link
    it seems that there are some changings on 4.3 (and 4.3.1) so please download the zip-file again from my page and have a look if this will be than ok:
    https://webers-testseite.de/Slideshows.zip

    Sorry but i need a little time to edit them
    see result: https://webers-testseite.de/cynthia/slideshows/

    in reply to: How to add anchor to headline #950597

    if you are familiar with child-themes and managing some snippets for functions.php of your child-theme:
    i edited the headings alb element to have that option: https://webers-testseite.de/edited-enfold-alb-elements/#headings

    for example i did that on Disclaimer to show : https://webers-testseite.de/impressum/#disclaimer

    in reply to: icons instead phone info on top bar left #950560

    first of all the header is on that page styled to be on the whole width of the screen.
    Goto Enfold Child – Header – Header Behavior – and mark: “Let logo and menu position adapt to browser window”

    this would have been a bit easier to know first.

    for the logo on top left nearby the other images i would do it the same way – but not with your long logo – something like:

    in reply to: icons instead phone info on top bar left #950235

    complete the rule above by:
    (not to much else the width had to be adjusted.

    .responsive #header .social_bookmarks li {
        margin-right: 5px;
    }

    font-size: maybe you only make it normal and let 16px stay:

    #header_meta #avia2-menu a {
        font-size: 16px !important;
        font-weight: normal !important;
    }

    the next questions will cost ;) :lol

    in reply to: icons instead phone info on top bar left #950188

    if you like some gimmicks :lol

    #top #wrap_all .social_bookmarks li a:hover {
        transform: scale(1.4);
        transform-origin: top left;
        transition: 1s all ease-in-out;
        z-index: 3;
    }
    in reply to: icons instead phone info on top bar left #950181

    in you case i would do it this way and for the whole screen-width

    .responsive #header .social_bookmarks li {
        border: none !important;
    }

    * on that case you can goto 27px width / height above (instead of 25px)

    in reply to: icons instead phone info on top bar left #950161

    here on total

    #top #wrap_all .av-social-link-theorytest a:before,
    #top #wrap_all .av-social-link-labs a:before
    {
        content: "";
        width: 25px;
        height: 25px;
        display: inline-block;
        vertical-align: middle;
        background-size: contain !important;
    }
    
    .responsive #top #header .social_bookmarks { display: block !important}
    
    #top #wrap_all .av-social-link-theorytest a:before {
    background: url(https://haqsfashions.website/helixcloudservices/wp-content/uploads/2018/05/Theory_Test_App_icon.png) no-repeat center center
    }
    
    #top #wrap_all .av-social-link-labs a:before {
    background: url(https://haqsfashions.website/helixcloudservices/wp-content/uploads/2018/05/Screen_Shot_20180430_at_105941.png) no-repeat center center
    }
    
    #top #wrap_all .av-social-link-theorytest:hover a {
        background-color: #d11a4e !important;
    }
    
    #top #wrap_all .av-social-link-labs:hover a {
        background-color: #46d4fe !important;
    }
    
    @media only screen and (max-width: 767px) {
    
    .responsive #header .social_bookmarks {
    	text-align: left;
    	width: 25%}
    	.responsive #top #header .social_bookmarks {
    	display: inline-block !important;
    }
    .responsive #header .sub_menu {
    	float: right !important;
    	width: 75%;  
    }
    
    .responsive #header .sub_menu ul {
        text-align: right;
    }
    }
    in reply to: icons instead phone info on top bar left #950157

    delete this is obsolete:

    @media only screen and (max-width: 767px) {
    .responsive #header .sub_menu, .responsive #header_meta .sub_menu > ul {
        float: left !important;
    }
    }
    in reply to: icons instead phone info on top bar left #950154

    size: change that to:

    #top #wrap_all .av-social-link-theorytest a:before,
    #top #wrap_all .av-social-link-labs a:before
    {
        content: "";
        width: 25px;
        height: 25px;
        display: inline-block;
        vertical-align: middle;
        background-size: contain !important;
    }
    in reply to: icons instead phone info on top bar left #950153

    this is only by text-align done:

    but if there will be no more social links and sub-menu points we can manage that on one line :

    @media only screen and (max-width: 767px) {
    .responsive #header .social_bookmarks {
    	text-align: left;
    	width: 25%}
    	.responsive #top #header .social_bookmarks {
    	display: inline-block !important;
    }
    .responsive #header .sub_menu {
    	float: right !important;
    	width: 75%;  
    }
    .responsive #header .sub_menu ul {
        text-align: right;
    }
    }
    in reply to: Overlay color youtube video #950142

    by the way – was it complex to integrate the edfm-fly-menu to enfold ?

    in reply to: icons instead phone info on top bar left #950135

    give an !important to contain:

    #top #wrap_all .av-social-link-theorytest a::before, #top #wrap_all .av-social-link-labs a::before {
        content: "";
        width: 20px;
        height: 20px;
        display: inline-block;
        vertical-align: middle;
        background-size: contain !important;
    }

    and btw:

    you can have the hover like social-bookmarks as well:

    #top #wrap_all .av-social-link-theorytest:hover a {
        background-color: #d11a4e !important;
    }
    
    #top #wrap_all .av-social-link-labs:hover a {
        background-color: #46d4fe !important;
    }

    and to get a bit distance between Logo and header_meta in responsive case :

    @media only screen and (max-width: 767px) {
    .responsive #header .sub_menu, .responsive #header_meta .sub_menu > ul {
        float: left !important;
    }
    }
    • This reply was modified 7 years, 8 months ago by Guenni007.
    in reply to: Background video #950133

    on my 4.3 Enfold that works perfect !

    PS : the new 4.3.1 is there but sadly these fixes aren’t included.

    in reply to: Change "View all results" font hover color #950027

    some seconds faster Mike

    in reply to: css conflict #950016

    if that above was you code you have in it: the quotation marks are not code marks.

    Das waren teilweise geschwungene Anführungszeichen. Dann funktioniert es auch nicht mit dem code.

    in reply to: css conflict #950009

    i think the one span is obsolete .
    And maybe the effect is better if the big i is better visible as Letter and function: try this:
    <p style="text-transform: uppercase; color: #ffffff;">Werden Sie Partner auf der Plattform für Mediziner<span style="color: #dcb505; font-weight: bold; font-size: 1.4rem; vertical-align: top">I</span>nnen</p>

    see here : https://webers-testseite.de/inline-css/

Viewing 30 posts - 8,431 through 8,460 (of 11,877 total)