Viewing 30 results - 241 through 270 (of 1,186 total)
  • Author
    Search Results
  • #1269334

    In reply to: Scroll up button

    Hi Talker77,

    You can add this code in Quick CSS (located in Enfold > General Styling) or use the code @cherrmann gave since it does the same thing:

    #scroll-top-link {
        left: 50px;
        right: auto;
    }


    @cherrmann
    thanks for helping out :)

    Best regards,
    Nikko

    #1265630

    No worries on the delay. I am not familiar with jquery at all. These changes would need to be made in the code placed in my php file?

    Whichever you recommend.

    Honestly if we could even just have the portfolio default to open without autoscrolling to the section, that would work fine. The site is basically a single page with anchor links in the menu. I just need the user to treat the first ajax portfolio preview like a section, and then have the other portfolios available to open if needed.

    #1255245

    i do have this drop-down menu not inside the viewport often on mega-menus.
    i just gave them a max-height value that is in relation to the viewport height so that if the screen-height is less than the drop-downlist height the content is scrollable:

    #top #header .avia_mega_div {
        max-height: calc(100vh - 20px);
        overflow: auto !important;
    }

    there must be a similar solution for normal drop-down menu.

    #top #header .avia_mega_div,
    #avia-menu li > ul.sub-menu  {
        max-height: calc(100vh - 20px);
        overflow: auto !important;
    }
    #1250819

    Hi,

    @mbesh: What do you mean by “simply put the posts in a slider”? Are you referring to the post slider element?

    The modification or script that we provided in the previous thread will apply an anchor to the pagination links so users will automatically get redirected to the actual section where the blog posts element is. This is only needed when the posts element is not added at the very top of the page or if it is located somewhere in the middle or at the very bottom of the page. With the script, users will not have to scroll manually again to the posts section because of the added anchor in the pagination links.

    Best regards,
    Ismael

    #1250561
    This reply has been marked as private.
    #1249755

    Topic: Timeline Auto Rotate

    in forum Enfold
    crushingpixels
    Participant

    I have a horizontal timeline and the navigation buttons are not intuitive enough to scroll for more timeline.

    How can I make it auto rotate like the Partner Logos?

    #1249533

    Topic: Sidebar main menu

    in forum Enfold
    Rachel
    Participant

    Hi,

    I used a code found on this forum and made my right sidebar main menu sticky on desktop.
    I also fixed my mobile header to be sticky.
    this is my code:
    @media only screen and (min-width: 768px) {
    .html_header_sidebar #top #header.av_always_sticky {
    right: 0;
    }
    .html_header_left #main {
    margin-left: auto;
    }

    .html_header_sidebar #header .av-main-nav {
    text-align: left;
    }

    .html_header_sidebar #top #header {
    position:fixed!important;
    width: 300px;
    position: absolute;
    min-height: 100%;
    border-bottom: none;
    }
    }

    @media only screen and (max-width: 989px) {
    .responsive #top #main {
    margin-top: 82px;
    }
    .responsive #top #wrap_all #header {
    position: fixed;
    }
    #top .av_header_transparency .header_bg {
    background-color: #ffffff;
    }
    }

    @media only screen and (max-width: 767px) {
    #top .av_header_transparency #header_meta {
    background: blue;
    box-shadow: none;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    }

    here are my problems:

    1. The menu is sticky, but not “Sticky if Sidebar is smaller than the screen height, scroll otherwise”. and on smaller desktop screens it can’t be scroll down.
    2. For some reason, the code added a large pudding on both sides of the main content.

    can you pls hlpe me fix both of those problams?
    Thanks so much!

    todd0218
    Participant

    Hello again,

    Me and a co-worker have put together some javascript that would allow video to play on our site when in the viewport and pause the video when you are outside of the viewport: https://codepen.io/trafficdaddy/pen/ExKrpPB

    The problem is it appears the videos are being wrapped in mediaelementplayer which appears to be preventing our code to fire correctly.

    example of one of our videos in the text block html:
    <div id=”myVideo” data-aos=”fade-right” data-aos-duration=”1500″ data-aos-delay=”500″>

    [video muted="muted" width="800" mp4="http://maymobilitydev.wpengine.com/wp-content/uploads/2020/09/Masthead_Video_1920x1080.mp4" (hosted on WPengine) type="video/mp4"][/video]

    </div>

    our JS currently in the functions.php file:

    function custom_video_scrolled_script(){
    ?>
    <script>
    (function ($) {
    var media = $(‘video’).not(“[autoplay=’autoplay’]”);
    //for media, you could give your scroll play videos a class if you need to make it more specific. This would play ALL html5 video tags when scrolled too.
    var tolerancePixel = 80;

    $(document).on(‘scroll’, checkMedia);

    function checkMedia(){
    // Get current browser top and bottom
    var scrollTop = $(window).scrollTop() + tolerancePixel;
    var scrollBottom = $(window).scrollTop() + $(window).height() – tolerancePixel;

    media.each(function(index, el) {
    var yTopMedia = $(this).offset().top;
    var yBottomMedia = $(this).height() + yTopMedia;

    if(scrollTop < yBottomMedia && scrollBottom > yTopMedia){ //view explaination in In brief section above
    $(this).get(0).play();
    } else {
    $(this).get(0).pause();
    // $(this).get(0).currentTime = 0;
    }
    });
    }
    })(jQuery);
    </script>
    <?php
    }
    add_action(‘wp_head’, ‘custom_video_scrolled_script’);

    could you advise on the tweaks needed to make this work properly?

    #1248102

    Hi Victoria,

    If I do this, which option I have to choose in Enfold > Layout Builder > LayerSlider :– deactivate and keep files – remove files of the plugin and keep slides – remove entire plugin ?
    Adding an advanced layer slider in advanced layout builder will still work ?
    Adding an activation code in product activation wouldn’t be the easiest way ?

    Moreover, I’d like to create a layerslider popup which appears when visitors scroll at a position in my page (that’s why I look for purchase a license). In advanced layout builder, should I adding an advanced layer slider block ? where ? (if my popup automatically appears at a position)

    Thank you,
    Franck

    #1247624

    Hi,

    Thank you for the screenshot.

    Is it working correctly when the overflow property of the tab container is set to auto or scroll?

    .responsive .tabcontainer {
    	overflow: auto;
    }

    or scroll.

    .responsive .tabcontainer {
    	overflow: scroll;
    }

    We have forwarded the issue to our channel and hopefully we could provide a fix in the next patch.

    Another user noticed the same issue and temporarily or until the issue is fixed, we asked him to disable the modal popup window containing the privacy tabs and create a custom link to a page containing the privacy toggles and content.

    Best regards,
    Ismael

    #1246827

    Hi Victoria!

    Thanks for getting back. The position indicator now works just fine on one page, but still not on the other pages.
    I’ve attached the link to where you can download the screencasts.

    Also, there is an incredible lack of responsiveness when trying to scroll the page with the non-working menu-highlight. Upon closer inspection you can see that the class active-menu-item does appear to get assigned to the correct menu-element, but gets auto-removed immediately (and so on and so forth for several times per scroll; maybe causing the performance issues).

    Since it’s now working on the one page we made content & layout changes to, I suspect it’s an issue with one or more Avia elements – but couldn’t find any meaningful difference between these pages.
    Let me know if you need any more info.

    Thanks in advance!

    #1244704

    I’m trying to add this same autoscroll function to a horizontal gallery
    when I look at line 962 in the js/avia.js fieldworker i see different code that does not appear to be about the gallery
    I’m using Version: 4.4.1

    I also tried to search prettyPhoto in this file and did not see that either

    #1244655
    PF_OS
    Participant

    Hi,
    when entering our page for the first time, the cookie modal automatically appears.
    If you want to scroll down to get to the submit button on iOS, you are not able to go to it when scrolling on the text. Only if you scroll at the very narrow side or if you open another tab, you can get to it. This is very unfortunate, because the typical user just puts his finger on the text to go to the submit button at the bottom.
    Here you can see a video of it:

    Is there any possibility to fix it?

    Thanks for your help.

    Jannis

    #1243618

    I added a link into the private content.
    The final idea is to have an automatic running, repeating background video which can be overlapped by the below content when scrolling down. Or parallax as an alternative.
    Color section is not working at all (black screen). W
    hen using video element it is working, but does no stay on the site. It opens youtube on a new tab instead.

    #1242047

    Hey Angèle,
    Sorry for the very late reply and thank you for the login, I took a look at your page and the jumping seems random so I couldn’t pin it down to anything, but I came up with a possible solution where “on-click” we center the “active title” and this seems to work well. So in order for this to work best I set all of the accordions to none open initially, this way there will only be one “activeTitle” class on the page at any time.
    I added this code to the end of your child theme functions.php file in Appearance > Editor:

    function custom_accordion_toggle_script(){
      ?>
      <script>
    (function($){
      $("#top.page-id-114 .av_toggle_section").on('click', function () {
        $('.activeTitle').animate({
            scrollTop: $(this).offset().top - $(this).height()
        }, 1000);
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_accordion_toggle_script');

    Please clear your browser cache and check.

    I also noticed you had many “mixed content” errors in the browser console for the google font “roboto” I didn’t find what is loading it, but adding the meta tag upgrade-insecure-requests to the site head solves by forcing the browser to request the “https” version automatically.
    I added this code to the end of your child theme functions.php file in Appearance > Editor:

    
    function add_custom_meta(){
      ?>
      <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
      <?php
      }
    add_action('wp_head', 'add_custom_meta', 1);

    I hope you don’t mind.

    Best regards,
    Mike

    #1239342
    Dave
    Participant

    Hi
    The Enfold Content Slider won’t show images (logos) in Chrome. I’ve tried it on a few devices it’s the same.
    However, it seems OK in Safri and Firefox.

    The site is https://www.greenworkstreecare.com.au/ and it is the Customers and Partners section above the footer on the Home page. We are using the Content slider so we have the animation to show all Logos.

    BTW can you get the Enfold Partner/Logo Element to be automated (scroll all logos)?

    Do you know how to cure this?

    Thanks, heaps
    Dave

    #1238832

    Hi sbott

    Mit der Einstellung Deutsch Sie wird nicht alles auf Sie umgestellt im Autoresponder Mail. Du musst wie oben beschrieben das File “de_DE_formal.po” anpassen. Das geht am einfachsten mit dem Plugin “Loco Translate”. Wenn du es installiert hast, gehst du auf den Menüpunkt “Themes”, wählst Enfold aus und dann “Deutsch Sie”. Dort findest du alle Texte in der Ursprungssprache. Suche den Text, der falsch übersetzt wird (Thank you for your message). Kannst du im Suchfeld eingeben oder nach unten scrollen zu Th…. Dann einfach im Deutsch-Feld “Vielen Dank für Ihre Nachricht” schreiben. Am Ende speichern.

    Das einzige Problem bleibt, dass du das nach einem Enfold-Update wiederholen musst. Das File wird halt wieder überschrieben.

    Hoffe, das hilft…

    Best Regards
    Mike

    #1238078

    Hi again everyone,

    I just start working so I didn’t see that Kriesi released an update a few hours ago. Please try updating to 4.7.6.3 to see if that works better. Here’s what is fixed in that version:

    fixed: WooCommerce broken ajax search (in conjunction with WPML or plugins hooking into search query)
    fixed: DragDrop and scroll not working with WP 5.5 block editor and ALB
    fixed: ALB TabSection “Auto adjust height to content” not working
    fixed: Block editor and ALB – title field loses focus after typing when empty content (Chrome)
    fixed: non object notice in element-manager.class.php

    If you had problems with the previous version then it might be a good idea to update on a staging site first, to avoid any problems with your live sites.

    Best regards,
    Rikard

    #1237945
    mason7773
    Participant

    Hello,

    I have recently had my website designed and I have a few small issues.

    Wesbite: https://brinnick-autolocksmiths.co.uk/

    – My full width easy slider no longer shows images on all of my services pages. This was fine up until 2-3 days ago. It now just shows a large white space. I have tried disabling plugins, deleting and re-adding them, no luck at all.

    – ‘Makes & Models’ Sub-categories doesn’t scroll down properly so it’s missing some of them at the bottom. It is quite a long list which I understand may be unusual but I need to have it.

    I have tried to add the below code but it doesn’t look great and also gets rid of secondary sub categories in ‘Areas Covered’.

    .main_menu .menu ul {
    height: 500px;
    overflow: hidden;
    overflow-y: scroll;
    }

    Please see an image of the issue here (note that it’s missing the bottom 5 car brands in the list and it doesn’t scroll)

    Link: https://imgur.com/jDSkL86

    • This topic was modified 5 years, 6 months ago by mason7773.
    #1237006
    OttoPf
    Participant

    Hi @yigit
    all content from the homepage is gone:
    URL: friedhelmkaendler.de/

    The only thing i did was updating WP from to the latest version (from the version before)
    (YES, i cleared the cache)

    The content in ALB is still there:

    [av_section min_height='50' min_height_px='500px' padding='default' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' scroll_down='aviaTBscroll_down' custom_arrow_bg='' id='' color='main_color' background='bg_color' custom_bg='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='https://friedhelmkaendler.de/wp-content/uploads/2018/09/slider2.jpg' attachment='121' attachment_size='full' attach='parallax' position='top center' repeat='no-repeat' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.4' overlay_color='#ffffff' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0' av_uid='av-jlz6nsbc']
    [av_heading heading='Friedhelm Kändler' tag='h2' style='blockquote modern-quote modern-centered' size='5vw' subheading_active='subheading_below' subheading_size='22' margin='' margin_sync='true' padding='10' color='' custom_font='' 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-jlz7g6l8' admin_preview_bg='']
    Wenn ich mich verlaufe, bin ich woanders, wenn ich mich verstehe, bin ich bei mir?
    [/av_heading]
    [/av_section]
    
    [av_section min_height='50' min_height_px='500px' padding='default' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' scroll_down='aviaTBscroll_down' custom_arrow_bg='' id='' color='alternate_color' background='bg_color' custom_bg='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0' av_uid='av-jlz6nsbc']
    
    [av_three_fifth first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' link='' linktarget='' link_hover='' padding='0px' border='' border_color='' radius='0px' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_breaking='' mobile_display='' av_uid='av-eyi6']
    
    [av_toggle_container initial='0' mode='accordion' sort='' styling='' colors='' font_color='' background_color='' border_color='' colors_current='' font_color_current='' background_current='' background_color_current='' background_gradient_current_color1='' background_gradient_current_color2='' background_gradient_current_direction='vertical' hover_colors='' hover_background_color='' hover_font_color='' alb_description='' id='' custom_class='' av_uid='av-jlz7n1xy']
    [av_toggle title='Leben' tags='' av_uid='av-h7inb' custom_id='']
    Friedhelm Kändler, geb. zur Jahrhundertmitte in Hannover, als Sohn (gewünscht war eine Tochter) des Verwaltungsangestellten Friedrich Kändler und seiner Ehefrau Adele.
    
    Nach reicher, fantasievoller Kindheit bewältigte er die Schulzeit, sammelte in kurzer Wehrzeit (2 Monate und 4 Tage) mehrere Disziplinarverfahren ein - wegen Schießbefehlsverweigerung und anderer Nachlässigkeiten, leistete Zivildienst im Krankenhaus (am Silbersee), studierte Pädagogik und schrieb seine erste Examensarbeit zur Frage der Logik in der Grammatik.
    Er erledigte seine Lehramtsprüfungen in den Fächern evangelische Theologie und visuelle Kommunikation (Nordhorn), arbeitete in der Erwachsenenbildung (Düsseldorf-Kaiserswerth), sodann mit dem Ziel von mehr Zeit in diversen Halbtagsanstellungen (Hannover) und wechselte in den 80er Jahren ins selbständige Schreibfach.
    
    Kändler begleitete seine schriftstellerische Tätigkeit mit Auftritten, heimste Preise ein, schuf den Epochenbegriff des WoWo und entschied Anfang 2000, sich aus dem Bühnenleben zurückzuziehen. Er verließ seine Geburtsstadt Hannover, zog nach Südhessen, ins trüb-friedliche Kleinstadtleben (Pfungstadt / Haus Wildkind). Dort hockt er derzeit – unverheiratet, verwaist und kinderlos, aber mit Büchern.
    Bei letzter Anfrage gab er an, durchaus zufrieden zurückblicken zu dürfen, und auch nach vorne hin gäbe es noch Worte.
    
    Siehe auch <a href="https://de.wikipedia.org/wiki/Friedhelm_Kändler">Wikipedia</a>
    
    Siehe auch Youtube / <a href="https://www.youtube.com/channel/UCrfECUdLNo-W-63Nw8wNWkQ">WoWosho</a>
    [/av_toggle]
    [av_toggle title='Rosen' tags='' av_uid='av-6l6rb' custom_id='']
    <a href="https://friedhelmkaendler.de/wp-content/uploads/die-band-31.jpg"><img class="aligncenter wp-image-431" src="https://friedhelmkaendler.de/wp-content/uploads/die-band-31.jpg" alt="" width="600" height="400" /></a>„Ich habe Jugend nachgeholt. Zum Teil die meiner Eltern.“
    
    Der Versuch einer Erklärung. Ins Zeitfenster geschaut – es war nach dem Abschluss des zweiten Staatexamens, ich probierte mich als Liedermacher aus, mit einer begrenzten Zahl an Gitarrengriffen, und erregte Aufmerksamkeit. Sie führte zu einer Rockformation, die allerdings nach ersten, durchaus gelungenen Auftritten die Lust verlor, ihre Boxen auf die Bühne zu tragen.
    
    Damals, das Haar noch lang und ebenso alle Zeit dahinter.
    
    Und weiter zurück geschaut, zu den Vergnügen – so nannten meine Eltern die Tanzabende, zu denen ich mitgenommen wurde – und ihrer Musik, zu der dann meine Pubertät erwachte, sich staunend umsah. Klatschrhythmen und sich verzweifelt schmiegende Harmonien, Sehnsucht nach dem Untertauchen in Massenbegeisterung, und so viele Fragen, übersungen.
    
    Jahre gingen dahin, plötzlich ein Schmunzeln: Ob es mir möglich sein würde?
    
    <a href="https://friedhelmkaendler.de/rosen/">Weiter.....</a>
    [/av_toggle]
    [av_toggle title='Mehrchenstunde' tags='' custom_id='' av_uid='av-7gy9z']
    <strong><a href="https://friedhelmkaendler.de/wp-content/uploads/Mehrchen-CD.png"><img class="alignleft size-square wp-image-563" src="https://friedhelmkaendler.de/wp-content/uploads/Mehrchen-CD-180x180.png" alt="" width="180" height="180" /></a>September 2020 - es ist aufgenommen!</strong>
    
    Mit dem Feudel der Technik – eine Sammlung Gedichte, getitelt „MEHRCHENSTUNDE“. In Erinnerung an das Programm „Mehrchenstunde“, mit dem ich tourneet bin, vor Zeiten. Wozu es auch ein Buch gab, im Wehrhahn-Verlag mehrmals wieder aufgelegt, bis zur Vergriffenheit. Und gesagt wurde es immer mal wieder, all das Sagenhafte, Verzauberte und Andersweltliche sollte mal einen gemeinsamen Platz erhalten, auf tönenden Füßen, angesprochen.
    
    Mehr <a href="https://friedhelmkaendler.de/mehrchenstunde/">Infos</a>
    [/av_toggle]
    [av_toggle title='Missis Jö' tags='' av_uid='av-g5n7z' custom_id='']
    Der erste Band der Trilogie "Die Abenteuer der Missis Jö" ist Ende 2018 erschienen - ein dickes Herzenswerk, und wer gelesen hat: Beim Jeroch-Verlag gibt es eine <a href="http://jeroch-verlag.de/halle-der-gespraeche/">Halle der Gespräche</a> und ich würde mich enorm über Rückmeldungen freuen, über Fragen, Zweifel, Kritik und Gefallen!
    
    <a href="https://friedhelmkaendler.de/wp-content/uploads/Missis-Joe-Wand-1.jpeg"><img class="alignleft size-gallery wp-image-357" src="https://friedhelmkaendler.de/wp-content/uploads/Missis-Joe-Wand-1-845x684.jpeg" alt="" width="845" height="684" /></a>
    [/av_toggle]
    [av_toggle title='B-Gleiter' tags='' av_uid='av-7xdbr' custom_id='']
    Weil es mir wichtig ist und weil es so großartig ist, mit anderen Künstlern und Innen zusammen zu arbeiten und ihre Unterstützung zu erfahren.
    Weil auch Worte gern mal nicht allein daherkommen, sondern in Gesellschaft von Freunden, von Zeichnungen, Klängen und bewegten Bildern, und es ist ein großes Glück.
    
    Leut´selig.
    
    Oder auch, liebevoll anders getont: Mens´chen.
    Abzuleiten von „mens“, der Geist – und dann die Chen-Verniedlichung: Kleine Geister. Der Spuk bereichert.
    
    Manchmal setze ich mich vor eine Kaffeetasse und schwärme. Mit Blick zurück, der eine und andere auch voran.
    
    Nicht alleine fliegen …
    So viele B-Gleiter. Es ist unmöglich, sie alle zu nennen. Es gäbe so vieles nicht, ohne sie.
    
    Doch es ist <a href="https://friedhelmkaendler.de/b-gleiter/">da, klicke hier</a>.
    [/av_toggle]
    [av_toggle title='WoWo' tags='' av_uid='av-9ullz' custom_id='']
    <a href="https://friedhelmkaendler.de/wp-content/uploads/2018/09/manifest.jpg"><img class="alignleft wp-image-72" src="https://friedhelmkaendler.de/wp-content/uploads/2018/09/manifest-272x300.jpg" alt="" width="220" height="242" /></a><strong>WoWo ist die Frage auf die Antwort des DaDa.</strong>
    
    Benötigt es eine Erläuterung der Theorie des WoWo? Die Puzzleteile sind aufzufinden, das Bemühen, aus ihnen ein Ganzes zu schaffen, ist unterwegs.
    Das ist ein besserer Zustand als fertig und aufgehängt.
    
    Die Erläuterung, warum in einer Straße ein Schuhladen neben einem Schlachter steht, ist ein aufwendiges Geschäft. Manche Pflanze wächst an ihren Orten, ohne sich um andere Gründe zu kümmern als den des Bodens und der guten Hoffnung, dass es dann und wann regnen wird.
    
    Was sich beobachten lässt, muss nicht zwangsläufig sein.
    
    Reime grenzen die Möglichkeit der Inhalte ein, Worte die ihrer Rhythmen. Mit anderem Ansatz gesagt: Wer scheut, seine Kunst als WoWo zu benennen, hat recht, da er scheut.
    
    Kann es sein, dass Unsicherheit mehr Höflichkeit gebiert als Sicherheit? Und ist Höflichkeit nicht eine Form ähnlich des Reimes – eine Äußerlichkeit, die es vermag, ein Glück einzufangen? Nur … Wer will dafür unsicher sein?
    
    <strong>Wowo ist eine Fragekunst.</strong>
    
    Antworten neigen, ein Ende zu setzen. Was ist daran reich? Nun gut … Es sammelt sich derart besser.
    Antworten neigen zur Herrschaft. Mit bestem Willen, es kommt vor.
    
    DaDas Kunst besitzt keinen ismus. Einzig derart gilt sie allem WoWo als Vorbild.
    Das Nachbild ist unterwegs.
    
    Öffne eine Schublade, finde einen Schrank und krame ihn heraus. Und ewig so weiter, bis ablöst, dass du müde geworden nachgibst. Und frei.
    [/av_toggle]
    [av_toggle title='Waren' tags='' av_uid='av-3jyg' custom_id='']
    "Es sind ja immer erst die Antworten da, dann kommen die Fragen."
    
    So lautet es im Thesenpapier des Wowo, und ganz in diesem Sinn: Es gibt Antworten, gestaltete Ergebnisse der Arbeit Friedhelm Kändlers, eine Zahl unterschiedlicher Bücher, CDs und manch anderes, aber keine T-Shirts. Daran wird noch gearbeitet, mit Sinnfrage und immer neu suchend nach alternativen Möglichkeiten - zum Beispiel Stirnbänder oder auch Schweissbänder genannt würden passen, beschriftet mit einem Denkanstoss, zugleich geeignet, bei Stössen des Kopfes den Prall zu mildern ...
    
    Was vorläufig angeboten werden kann, sehen Sie <a href="https://friedhelmkaendler.de/waren/">hier.</a>
    [/av_toggle]
    [av_toggle title='Abendfüllend' tags='' custom_id='' av_uid='av-93mxj']
    Über die Jahre sind nicht wenige Worte zusammengekommen. Manche sind abendfüllend. Niedergeschrieben mit Blick auf die Bühne.
    
    Spielworte.
    
    In mehren Akten oder mit selbst gewählter Pause, je nach Regie – mehrpersonig. Ich habe vor Zeiten meine Worte gerne selbst gespielt, manchmal geschieht es auch heute noch. Doch für solche war und bin ich nur einer allein und damit zu wenig.
    
    Großstücke.
    
    So nenne ich sie, und wer mag, kann <a href="https://friedhelmkaendler.de/abendfuellend/">hier</a> einen Blick werfen.
    [/av_toggle]
    [av_toggle title='Kontakt' tags='' av_uid='av-3do2' custom_id='']
    [av_contact email=' (Email address hidden if logged out) ' title='Senden Sie mir eine Mail' button='Senden' on_send='' sent='Ihre Nachricht wurde versendet!' link='manually,http://' subject='' autorespond='' captcha='' form_align='' color='' av_uid='av-bop2' admin_preview_bg='']
    [av_contact_field label='Name' type='text' check='is_empty' av_uid='av-99rm' options='' multi_select='' av_contact_preselect='' width=''][/av_contact_field]
    [av_contact_field label='E-Mail' type='text' check='is_email' av_uid='av-7jsi' options='' multi_select='' av_contact_preselect='' width=''][/av_contact_field]
    [av_contact_field label='Betreff' type='text' check='is_empty' av_uid='av-69ti' options='' multi_select='' av_contact_preselect='' width=''][/av_contact_field]
    [av_contact_field label='Nachricht' type='textarea' check='is_empty' av_uid='av-41ne' options='' multi_select='' av_contact_preselect='' width=''][/av_contact_field]
    [av_contact_field label='' type='html' options='' check='' width='' av_uid='av-gxdmn' multi_select='' av_contact_preselect='']
    Die über dieses Kontaktformular erhobenen Daten dienen ausschliesslich der Beantwortung Ihrer Anfrage und werden nach Abschluß des Vorgangs / der Anfrage gelöscht. Detaillierte Informationen zu unserem Umgang mit Nutzerdaten finden Sie in unserer <a href="https://friedhelmkaendler.de/datenschutzerklaerung/">Datenschutzerklärung</a>.
    [/av_contact_field]
    [/av_contact]
    [/av_toggle]
    [/av_toggle_container]
    
    [/av_three_fifth][av_two_fifth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' link='' linktarget='' link_hover='' padding='0px' border='' border_color='' radius='0px' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_breaking='' mobile_display='' av_uid='av-33ag']
    
    [av_image src='https://friedhelmkaendler.de/wp-content/uploads/2018/09/die-kuh--298x300.jpg' attachment='69' attachment_size='medium' align='left' styling='' hover='' link='lightbox' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' copyright='' animation='no-animation' av_uid='av-jlzcg77y' custom_class='' admin_preview_bg=''][/av_image]
    
    [/av_two_fifth][/av_section][av_section min_height='' min_height_px='500px' padding='default' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='scroll' bottom_border_style='scroll' scroll_down='' custom_arrow_bg='' id='' color='main_color' background='bg_color' custom_bg='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' video_mobile_disabled='' overlay_enable='' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av_element_hidden_in_editor='0' av_uid='av-2ps2']
    [av_masonry_gallery ids='168,219,166,165,73,272,71,70,276,68,66,177,226,227,325,253,415,418,565,563,564' caption_elements='none' caption_styling='overlay' caption_display='on-hover' size='flex' orientation='' gap='large' columns='5' av-medium-columns='' av-small-columns='' av-mini-columns='' items='24' paginate='pagination' color='' custom_bg='' overlay_fx='' animation='' container_links='active' id='' custom_class='' av_uid='av-jm0xzwd6']
    [/av_section]
    
    
    #1234508

    Hi @mike
    Thanks for the reply
    Actually no it is not the “person” icon only .. it happens with any icon .. besides, if you look at the other links i provided, you can notice that the transition is abnormal .. there is a kind of a page flicker and stutter with some auto scroll adjustment that is annoying .. you can sense that there is something wrong with the element everywhere on the site

    • This reply was modified 5 years, 6 months ago by Cloudypro.
    #1233098
    Cloudypro
    Participant

    Hello

    I have updated my theme Enfold to the latest and suddenly the Tab Section started acting weirdly !
    I have attached below 2 links to check !

    https://per-vurt.com/jason-kaakoush/ (Tab disappears when another tab is selected)
    https://per-vurt.com/dj-music-production-school-lebanon/ (Tab acts weirdly when another tab is selected, the page flickers and kind of acts weird by auto-scrolling the page)
    https://per-vurt.com/record-labels/ (Same as above)

    Note:
    Recently i was asked by Enfold Support team to disable file merging (CSS and Javascript) in the Enfold Preference Menu
    I am not sure if this is also the case !?

    Please help me as soon as possible :) thank you

    #1231980
    emrisproperty
    Participant

    Hi,

    Please can you let me know if there is any way to change the issue I will describe below (website for reference to view is in private content) – thanks in advance for reading this and your help :)

    The header bar (grey one) with the logo – and one containing pages is larger when you first arrive on the homepage and then auto resizes to a smaller size when you scroll down the page.

    I prefer the look of the smaller size and would prefer it stayed like this at all times – is there any way to set it so it remains like this constantly please?

    Many thanks,

    Rob

    #1231315

    Hi Rikard,

    It works good with the images but i got a problem with the links. Normally if i click on an item in the menu it auto scrolls down to that section.
    But because i duplicated sections it wont scroll on desktop or mobile. It depends if i put the section on top of the other. Is there a way to change this? :-)
    both sections got the same ID atribute right now.

    Kind Regards,
    Lars

    Mischa S.
    Participant

    Hi!

    We have the following issue: Video blocks and the Mailchimp registration widget are not working on W P M L translated pages. Instead of the video we only see a visibile link to the video. Here are the outputs in HTML:

    DE:
    <div id=’av_section_1′ class=’avia-section main_color avia-section-no-padding avia-no-border-styling avia-bg-style-scroll avia-builder-el-0 el_before_av_section avia-builder-el-first color-section-full-width container_wrap fullsize’ style=’ ‘ ><div class=’container’ ><main role=”main” itemprop=”mainContentOfPage” class=’template-page content av-content-full alpha units’><div class=’post-entry post-entry-type-page post-entry-2040′><div class=’entry-content-wrapper clearfix’>
    <div class=’avia-video avia-video-16-9 av-lazyload-immediate av-lazyload-video-embed ‘ itemprop=”video” itemtype=”https://schema.org/VideoObject&#8221; data-original_url=’https://vimeo.com/434006698&#8242; ><script type=’text/html’ class=’av-video-tmpl’>https://vimeo.com/434006698</script><div class=’av-click-to-play-overlay’><div class=”avia_playpause_icon”></div></div></div>

    EN:

    <div id='av_section_1'  class='avia-section main_color avia-section-no-padding avia-no-border-styling  avia-bg-style-scroll  avia-builder-el-0  el_before_av_section  avia-builder-el-first  color-section-full-width  container_wrap fullsize' style=' '  ><div class='container' ><main  role="main" itemprop="mainContentOfPage"  class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-2039'><div class='entry-content-wrapper clearfix'>
    <div  class='avia-video avia-video-16-9   av-lazyload-immediate  av-lazyload-video-embed  '   itemprop="video" itemtype="https://schema.org/VideoObject"  data-original_url='https://vimeo.com/434006698' ><script type='text/html' class='av-video-tmpl'><div class='avia-iframe-wrap'><iframe src="https://player.vimeo.com/video/434006698?dnt=1&app_id=122963&autoplay=1&loop=1&controls=1&muted=1" width="1500" height="844" frameborder="0" allow="autoplay; fullscreen" allowfullscreen></iframe></div></script><div class='av-click-to-play-overlay'><div class="avia_playpause_icon"></div></div></div>

    DE:

    <div id='av_section_1'  class='avia-section main_color avia-section-no-padding avia-no-border-styling  avia-bg-style-scroll  avia-builder-el-0  el_before_av_section  avia-builder-el-first  color-section-full-width  container_wrap fullsize' style=' '  ><div class='container' ><main  role="main" itemprop="mainContentOfPage"  class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-2039'><div class='entry-content-wrapper clearfix'>
    <div  class='avia-video avia-video-16-9   av-lazyload-immediate  av-lazyload-video-embed  '   itemprop="video" itemtype="https://schema.org/VideoObject"  data-original_url='https://vimeo.com/434006698' ><script type='text/html' class='av-video-tmpl'><div class='avia-iframe-wrap'><iframe src="https://player.vimeo.com/video/434006698?dnt=1&app_id=122963&autoplay=1&loop=1&controls=1&muted=1" width="1500" height="844" frameborder="0" allow="autoplay; fullscreen" allowfullscreen></iframe></div></script><div class='av-click-to-play-overlay'><div class="avia_playpause_icon"></div></div></div>

    As you can see, on the translated page (DE) the iFrame tag is missing and therefore the video is not embedded. We don’t use the W P M L translation editor – instead we use the duplicate page feature of WPML. Please find the login credentials in the private content field.

    Any help is appreciated!

    Kind regards,
    Mischa

    • This topic was modified 5 years, 7 months ago by Mischa S..
    #1230595

    In reply to: Tabs, images, text

    Hi Victoria,

    Is it possible to make have the tabtitles underneath eachother?
    now you see 2 tab titels on mobile and if you swipe you see a new one. This is pretty confusing for others that scroll through the website.

    this are the codes i have now for the tab section:

    .av-inner-tab-title, .av-tab-section-icon, .av-tab-arrow-container, .av-tab-section-image {
    width: auto;
    margin-right: 10px;
    }

    .tab_titles {
    text-align: center !important;
    }

    .tab_titles .tab {
    display: inline-block !important;
    float: none !important;
    }

    Kind Regards,
    Lars

    Hey SyberKnight,

    Thank you for the inquiry.

    The theme is still using the same lightbox script, so previous methods that are available in the forum or in the documentation will still work. And it will still automatically apply the script to links or images when necessary. If you want to control how the lightbox script behaves, you can re-initialize the lightbox script for a certain element, then pass your own parameters.

    These are some examples available in the forum. Just search for “magnificPopup”.

    // https://kriesi.at/support/topic/secundary-menu-no-modal-possible/#post-1205935
    // https://kriesi.at/support/topic/pop-up-fenster/#post-1201896
    // https://kriesi.at/support/topic/add-caption-in-lightbox-under-image-in-masonry-gallery/#post-1180698

    additionally, what do you suggest for constraining these lightboxes to dimensions we choose AND controlling scrolling both vertically & horizontally?

    Unfortunately, you can only set the size of the lightbox container with css because there is no parameter given for it.

    Best regards,
    Ismael

    #1230584

    In reply to: Mobile view table bug

    Hey Mike2482,

    Thank you for the inquiry.

    The only workaround is to make the description column to a standard column.

    The theme contains a script that automatically prepends the description on every first item of the columns or sections on mobile view, because as the name says it is used to describe the content of that particular column. If that is not your intention, then you have to use the default column.

    Another solution is to make the table scrollable by setting the Advanced > Responsive Styling to the second option.

    Best regards,
    Ismael

    philippmhuber
    Participant

    Hi there,

    When you have a look on the website, you see a green “button” (it is actually no real button, it’s a column styled like a button) next to the burger menu. I’ve put 1/5 column into the footer page, position fixed. It should be used for a “Call to action” button (when you click on it, a pop up opens). The thing is, that it hides underneath the header. You don’t see it in the first place, because the header is transparent, but you can’t klick on the button. When you scroll down it hides completley underneath the sticky header. I put quite some code into quick css to style the header – i used different code for the different devices.

    Can you pleas give me the right classes / ids to set the right z-index? I’ve allready searched for ours….

    on mobile view the “button” is set position fixed on the bottom of the viewport – when you scroll all the way down you can see that it hides underneath the socket.

    thank you in advance!

    Here is the code, please see link in private content.

    /*HEADER MOBILE*/
    @media only screen and (max-width: 767px){
    .buchen-button{
    right: 0px!important;
    float: none!important;
    height: 30px;
    position: fixed!important;
    bottom: -20px!important;
    z-index: 999!important;
    }

    .buchen{
    top: 5px!important;}

    #avia2-menu{
    background: #ffffff!important;
    width: 100%important;
    float: left!important;
    position: fixed!important;
    height: 50px!important;
    -webkit-box-shadow: 5px 5px 15px -9px #000000;
    box-shadow: 5px 5px 15px -9px #000000;}

    .responsive #header_meta .sub_menu>ul{
    text-align: left;
    left: -1px!important;
    }

    .header_color .phone-info {
    float: right!important;
    text-align: right!important;
    height: 40px;
    position: fixed;
    background: #ffffff;
    left: 50%!important;
    top: -12px!important;
    width: 50%!important;
    z-index: 20!important;
    }

    #menu-item-wpml-ls-4-en{
    top: 18px;
    font-weight: 100!important;
    font-family: ‘lothos-pro’;
    font-size: 20px!important;
    background: #ffffff!important;
    position: fixed;
    z-index: 20!important;
    }

    .av-hamburger{
    background: #3074b5;
    padding-right: 20px;
    padding-left: 10px;
    margin-right: -30px;
    margin-top: 15px!important;}

    #header_main{
    top: 30px!important;
    height: 125px!important;}
    }

    /*HEADER TABLET*/

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .buchen-button{
    width: 150px!important;
    height: 80px;
    position: fixed!important;
    top: 50px!important;
    left: 70px;
    z-index: 999!important;
    }
    .buchen{
    top: 25px!important;
    bottom: 25px;
    }

    #header {
    position: fixed !important;
    height: 87px!important;
    z-index: 10!important;}

    #header_meta{
    background: transparent!important;
    z-index: 1!important;}

    .logo img{
    max-height: 60px;
    height: 60px;
    left: 5px;
    top: 8px;}

    .responsive.html_mobile_menu_tablet #top #wrap_all .av-logo-container{
    width: 60%;
    float: left;
    top: -80px;
    }

    .html_header_top #top .av_header_stretch .container{
    width: 40%;
    float: right;
    }

    .av-hamburger{
    background: #3074b5;
    padding-left: 20px;
    padding-right: 15px;
    margin-left: -20px;}

    #menu-item-wpml-ls-4-en{
    top: 20px;
    font-weight: 100!important;
    font-family: ‘lothos-pro’;
    font-size: 20px!important;
    }

    .av-hamburger-inner, .av-hamburger-inner:before, .av-hamburger-inner:after{
    background-color: #ffffff!important;}

    }
    /*HEADER TABLET HORIZONTAL*/
    @media screen and (max-width: 1100px) and (min-width: 989px){
    .html_header_top #top .av_logo_right .logo {
    right: 46%;
    max-height: 50px;
    height: 50px;
    }
    .buchen-button{
    width: 150px!important;
    height: 80px;
    position: fixed!important;
    margin-top: -32px!important;
    left: 112px!important;
    z-index: 999!important;
    }
    .buchen{
    top: 25px!important;}
    }

    /*HEADER DESKTOP*/
    @media only screen and (min-width: 989px) {
    /*buchen button*/
    .buchen-button{
    width: 150px!important;
    height: 80px;
    position: fixed!important;
    top: 32px!important;
    left: 130px;
    z-index: 999!important;
    }
    .buchen{
    top: 25px!important;}

    /*Flyout von links*/
    .html_av-overlay-side .av-burger-overlay-scroll {
    right: auto;
    left: 0;
    }

    .html_av-overlay-side .av-burger-overlay-scroll {
    width: 350px;
    -webkit-transform: translateX(-350px);
    transform: translateX(-350px);
    }

    #header_main {
    top: -80px;
    }

    #menu-item-wpml-ls-4-en{
    top: 20px;
    font-weight: 100!important;
    font-family: ‘lothos-pro’;
    font-size: 20px!important;
    }

    .phone-info with_nav{
    top: 10px!important;
    }

    .av_minimal_header .header_bg {
    background: #f8f8f8;
    height: 80px!important;
    }

    div#header_meta{
    float: right;
    width: 25%;
    border: none!important;
    height: 80px!important;
    top: -2px!important;
    }

    /*change color phone info scroll*/
    .header-scrolled{
    transition: none!important;}

    .header-scrolled .phone-info span {
    color: #000000!important;
    }

    /*hide logo*/
    .av_header_transparency .logo {
    opacity: 0;
    transition: none;
    }

    /*menu left logo center*/

    .html_header_top #top .av_logo_right .logo {
    right: 45%;
    max-height: 70px;
    height: 70px;
    top: 3px;
    }

    /*Burger background*/
    .av-hamburger {
    background: #3074b5;
    padding-left: 20px;
    padding-right: 5px;
    top: -7px!important;
    vertical-align: top!important;
    margin-left: -40px!important;
    height: 81px!important;
    line-height: 80px!important;
    }

    /*Burger Menu Beschriftung*/
    span.av-hamburger:after {
    content: ‘MENÜ’;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 20px;
    color: #ffffff;
    float: right;
    }
    }

    #1230177

    Hi,

    Thank you for the update.

    The theme automatically crops the background image or let it overflow outside the background positioning area in order to keep its aspect ratio. We can make the image fully visible within the section but will most likely distort the image or create white space around the container. So one solution is to create a duplicate of the same section and use a smaller image that is specifically cropped or resized for smaller screens.

    And if you’re seeing zoomed in images on iPad or iOS devices, this might be due to the fixed background attachment property. To fix it, we have to disable the fixed background effect, and revert it back to the default scroll behavior.

    @media only screen and (max-width: 989px) {
       .fullsize {
    	background-attachment: scroll !important;
       }
    }

    // https://caniuse.com/#feat=background-attachment

    Firefox does not appear to support the local value when applied on a textarea element.
    Chrome has an issue that occurs when using the will-change property on a selector which also has background-attachment: fixed defined. It causes the image to get cut off and gain whitespace around it.
    iOS has an issue preventing background-attachment: fixed from being used with background-size: cover – see details
    Best regards,

    Ismael

Viewing 30 results - 241 through 270 (of 1,186 total)