Viewing 30 results - 301 through 330 (of 244,342 total)
  • Author
    Search Results
  • #1494719

    Have you tried making changes yourself using CSS? Because the spacing between the images is not the Enfold standard spacing when set to “large gap.”

    #1494718

    so in total : replace the snippet by:
    ( btw. i changed the code on my page too – if you hover the snippet there is on top right of the codeblock a copy button)

    
    /**
     * Enfold Masonry Caption Fix - NUR für Perfect Grid
     * Schiebt die Caption unter das Bild, ohne es zu verdecken.
     */
    
    function enfold_masonry_perfect_grid_caption_fix() {
    ?>
    <style>
        /* ========================================
           PERFECT GRID CSS
           ======================================== */
        
        /* Erlaubt der Caption, über den Container hinauszuragen */
        #top .av-masonry.av-fixed-size.av-masonry-gallery .av-inner-masonry,
        #top .av-masonry-gallery.av-masonry-gallery-fixed figure.av-inner-masonry {
            overflow: visible !important;
        }
        
        /* Positioniert die Caption direkt unter das Bild-Quadrat */
        #top .av-masonry.av-fixed-size.av-masonry-gallery .av-inner-masonry-content,
        #top .av-masonry-gallery.av-masonry-gallery-fixed figcaption.av-inner-masonry-content {
            position: relative !important;
            top: 100%;
            background: #ffffff; /* Hier ggf. deine Wunschfarbe für den Hintergrund */
        }
    
        /* Korrektur für Tablets */
        @media only screen and (min-width: 767px) and (max-width: 989px) {
            .responsive .av-masonry-gallery .av-masonry-entry .av-masonry-entry-title + .av-masonry-entry-content {
                display: block !important;
            }
        }
    </style>
        
    <script>
        (function($) {
            'use strict';
            
            function fixPerfectGrid() {
                // Nur für Masonry Galerien mit festem Raster (Perfect Grid)
                $('.av-masonry-gallery.av-masonry-gallery-fixed, .av-masonry.av-fixed-size.av-masonry-gallery').each(function() {
                    var $gallery = $(this);
                    var columnCount = 1;
                    
                    // Spaltenanzahl ermitteln
                    if ($gallery.hasClass('av-masonry-col-2')) columnCount = 2;
                    else if ($gallery.hasClass('av-masonry-col-3')) columnCount = 3;
                    else if ($gallery.hasClass('av-masonry-col-4')) columnCount = 4;
                    else if ($gallery.hasClass('av-masonry-col-5')) columnCount = 5;
                    else if ($gallery.hasClass('av-masonry-col-6')) columnCount = 6;
                    
                    if ($gallery.hasClass('av-masonry-col-flexible')) {
                        var $items = $gallery.find('.av-masonry-item-with-image:visible');
                        if ($items.length >= 2) {
                            var firstTop = $items.eq(0).offset().top;
                            var itemsInFirstRow = 1;
                            for (var i = 1; i < Math.min($items.length, 10); i++) {
                                if (Math.abs($items.eq(i).offset().top - firstTop) < 10) {
                                    itemsInFirstRow++;
                                } else { break; }
                            }
                            columnCount = itemsInFirstRow;
                        }
                    }
                    
                    // Maximalhöhe der Captions finden, damit die Zeilen gleichmäßig bleiben
                    var maxCaptionHeight = 0;
                    $gallery.find('.av-masonry-item-with-image').each(function() {
                        var $caption = $(this).find('figcaption.av-inner-masonry-content, .av-inner-masonry-content');
                        if ($caption.length && $caption.is(':visible')) {
                            maxCaptionHeight = Math.max(maxCaptionHeight, $caption.outerHeight(true));
                        }
                    });
                    
                    // Abstand unten einfügen, damit das Masonry-Layout Platz für die Caption lässt
                    if (maxCaptionHeight > 0) {
                        $gallery.find('a.av-masonry-entry, .av-masonry-item-with-image').css('margin-bottom', maxCaptionHeight + 'px');
                    }
                });
                
                // Layout neu berechnen
                $('.av-masonry-gallery.av-masonry-gallery-fixed, .av-masonry.av-fixed-size.av-masonry-gallery').isotope('layout');
            }   
    
            // ========================================
            // INITIAL LOAD - Nur auf Bilder warten, nicht auf die ganze Seite
            // ========================================
            (function() {
                var $gallery = $('.av-masonry-gallery');
                
                if ($gallery.length && typeof $.fn.imagesLoaded === 'function') {
                    // Wartet NUR auf die Bilder in der Galerie
                    $gallery.imagesLoaded(function() {
                        setTimeout(fixPerfectGrid, 200);
                    });
                } else {
                    // Fallback für den Notfall
                    setTimeout(fixPerfectGrid, 600);
                }
            })();
    
            
            // Nach Enfold Events
            $(document).on('av-masonry-complete', function() {
                setTimeout(fixPerfectGrid, 250);
            });
            
            // Bei Größenänderung
            $(window).on('debouncedresize', function() {
                // Reset Margin
                $('.av-masonry-gallery.av-masonry-gallery-fixed .av-masonry-item-with-image, .av-masonry.av-fixed-size.av-masonry-gallery .av-masonry-item-with-image').css('margin-bottom', '');
                fixPerfectGrid();
            });
            
        })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'enfold_masonry_perfect_grid_caption_fix', 999);
    
    

    i also replaced the on load event by:

    // Run initially
    $(window).on('load', function() {
        $('.av-masonry-gallery').imagesLoaded(function() {
            setTimeout(fixAllMasonryModes, 200);
        });
    });

    and implemented the enfold debounceresize function on performance reasons.

    #1494712
    Brad
    Participant

    I can’t seem to find which demo of Enfold I have installed, if any, and what the default fonts are for the theme or theme demo installed. I see “Default” in all of the drop downs inside of the Advanced Styling area, but can’t identify the fonts themselves.

    Any help would be appreciated.

    #1494707
    annameis
    Participant

    For the past couple weeks I have had issues with images showing up on my Enfold theme websites. All are hosted with GoDaddy and as soon as I clear the cache and they are fine. This happening randomly several times a week. I have contacted the host and they have not solved.

    Is this a new issue with Enfold and if so how do I fix as I have dozens of Enfold websites.

    Thank you!

    #1494706

    In reply to: Cookie Bar not loading

    Hi,

    Great, I’m glad that Ismael could help you out. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1494705

    Hey Ad-Min747,

    Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 1024px) {
      nav.main_menu {
        display: block !important;
      }
      #avia-menu .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
    }
    

    Best regards,
    Rikard

    #1494704

    In reply to: Upgrade question?

    Hey Zayd Khaial,

    The update to 7.1.3 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
    You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
    If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
    Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1494703

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1494702

    Hey condonp,

    Please try the following in Quick CSS under Enfold->General Styling:

    .avia-content-slider-element-container .entry-content svg {
      fill: red;
    }

    Best regards,
    Rikard

    #1494701

    Hey diefleischerei,

    You can set that under Enfold->Blog Layout->Single Post Navigation.

    Best regards,
    Rikard

    Hey Johannes,

    Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 767px) {
    #footer .widget {
      margin: 0;
    }
    }

    Best regards,
    Rikard

    #1494688
    Zayd Khaial
    Guest

    My site is currently running Enfold v4.5.5, would upgrading to the latest version still work. Would i have any menu or layout issues?

    #1494677
    diefleischerei
    Participant

    Ich würde gerne ein Instagram Reel (siehe Link) in meine WordPress-Seite mit Enfold integrieren. Wie mache ich das am einfachsten? Damit ich es direkt abspielen kann wie ein Youtube oder Vimeo Video?

    Vielen Dank, Alex

    Hi,

    Great, I’m glad that you got things working. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1494671

    In reply to: Enfold parallax

    Hey Raoel,

    You can install the demo of your choice under Enfold->Demo Import.

    Best regards,
    Rikard

    #1494669
    Raoel Varma
    Guest

    You showed the Enfold Design Parallax theme from Enfold. After downloading it, can I directly add it so that I only have to adjust it?

    I bought the theme, but I see that this doesn’t seem to be possible.

    If that’s not possible, why do you show this theme as an option?

    #1494650

    Our website’s ver. are WordPress 6.9.1 & Enfold 7.1.3.
    Thank you for your text messages.

    #1494643

    Hey Leoning,

    Thank you for the inquiry.

    Where is the site hosted? It’s possible that your hosting provider or server is blocking outgoing requests to external servers, including the demo source (kriesi.at). If that’s the case, you will need to import the demo manually using the available XML demo files. Please refer to this documentation for more info.

    https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo

    Let us know if you need more assistance.

    Best regards,
    Ismael

    Hi,

    Great, I’m glad that Ismael could help you out. We’ll close this thread for now then, please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    Lee Sang Min
    Guest

    Hello Enfold Team,

    I am a long-time user of the Enfold theme.
    I have been using Enfold for several years because of its excellent design and overall convenience, and I truly appreciate the quality of your work.

    However, I have been experiencing a recurring issue when using the Tab Section element while building pages.

    When I add layouts or other content elements inside a Tab Section, errors occur frequently. In many cases, after editing the content, the page fails to save properly. This issue happens repeatedly and seriously interrupts the page-building workflow.

    In most situations, once I remove the Tab Section from the page, the problem disappears and the page works normally again. Because of this, the Tab Section has become a major obstacle during content creation.

    Could you please look into this issue and let me know if there is a fix or an update planned to resolve this problem?

    Thank you very much for your continued support and for creating such a great theme.

    #1494618

    In reply to: Light issue

    Hi,

    Thank you for the update.

    You can try temporarily disabling the Enfold > Performance > File Compression settings to regenerate the scripts and stylesheets. We also found that the WP Media Folder plugin is loading the same lightbox assets. Have you tried disabling this plugin or disabling its lightbox option?

    Best regards,
    Ismael

    #1494606

    Hi,
    Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    #1494603
    madisonstudios1
    Participant

    I have the settings all set for the Cookies on https://procomconsulting.com/ using Enfold.
    It was working, and not it is not. I have reinstalled Enfold. I reinstalled WP too.

    Enable Cookie Consent Messages:
    “Enable cookie consent message selected”

    Default Cookie Behaviour:
    I have tried all four options.

    There are a ton more settings too many for this ticket. I will add the login info below for your review.

    ANOTHER WEIRD THING:
    I can not DISMISS all the Enfold messages, the X won’t close them. Strange things going on.

    Can you help please???

    #1494597

    In reply to: Update template

    Hey Niels,

    The update to 7.1.3 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
    You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
    If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
    Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    do you think of that perhaps?
    https://enfold.webers-webdesign.de/3-columns/

    #1494592
    Niels Oneglio
    Guest

    Good morning,

    I’ve taken over a site with the Enfold template version 4.7.2. I’d like to upgrade it by purchasing a new license on Themforest to version 7.1. Should the site remain as it is now, or will I have to recreate it entirely? I know the version gap is significant, so I have these doubts!

    See you soon.
    Niels

    #1494587

    Hi,
    Glad that we could help, thanks also for helping Guenni007, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    #1494582

    Hi Rikard,

    thank you for your answer. So can i export the child theme settings and import them to the Enfold theme? How is this working? Theme-Options / Import & Export will the styles be all exported?
    best regards

    Stephan

    #1494577

    In reply to: Enfold Shop Demo

    Hey actichemph,

    Thank you for the inquiry.

    We have added a Post Slider element below the slider, and the posts seem to be displaying as expected. You may need to select a category in the Content > Entries > Which Entries Should Be Used settings, as shown in the screenshot below.

    fZ3Y3XI.md.png

    To help you get started with the theme, please check out the documentation and feel free to reach out here in the forum if you need any assistance.

    https://kriesi.at/documentation/enfold/

    Best regards,
    Ismael

    ok – du hast jetzt statt bold das mit der Farbe realisiert, das die Jahre in einen eigenen tag kommen. Das wäre so nicht nötig gewesen.
    Denn die Farbe hättest du dann generell über dieses den strong-tag setzen können; so wie ich es auf der Beispielseite tat. Den bold style hatte ich dann ja mittels css zurückgenommen.

    damit meine Setzungen greifen, könntest Du jetzt eben das über dein span-tag machen:

    #top .my-listings li {
      display: grid;
      gap: 0 20px;
      grid-auto-flow: row;
      grid-template-columns: 120px 1fr;
      justify-content: start;
      margin: 0;
      margin-bottom: 10px;
    }
    
    #top .my-listings li span {
      font-weight: normal;
      justify-self: end;
    }
    
    #top .my-listings li em {
      font-style: normal;
    }
    
    /* === responsive styling === */
    @media only screen and (max-width: 469px) {
      #top .my-listings li {
        grid-template-columns: 1fr;
        justify-content: center;
        margin-left: 0 ;
      }
    
      #top .my-listings li span {
        font-weight: normal;
        justify-self: start;
      }
    }

    Das mit dem Kursiv setzen für den rechten Text brauchst du nur wenn du einzelne Begriffe dort verlinken möchtest. Wenn du immer den kompletten rechten Teil verlinkst, wie es in einem Beispiel auf deiner Seite war ist dies noch nicht mal nötig, da dann der ganze linke Teil in einem a-tag steht.

    Diese Einstellung hier bestimmt wo die Jahre bündig sind:

    #top .my-listings li span {
      font-weight: normal;
      justify-self: end;
    }

    wenn du z.B die lieber linksbündig hast, dann stelle justify-self : start
    (ps kopiere und ersetze die my-listings Regeln komplett, da ich noch das margin-left der enfold Standard Einstellung damit überschrieb. Der #top selektor garantiert hier noch das ich keine unnötigen !important Regeln setzen muss um bestehende Regeln von Enfold zu überschreiben.

    bei deiner Schriftgröße würden für den linken Teil der Jahre auch 90px reichen:
    grid-template-columns: 90px 1fr;

    wenn du die Jahre jetzt auf einen Schlag verändern willst, dann könntest du jetzt setzen ( bold und andere font farbe)

    #top .my-listings li span {
      font-weight: bold;
      justify-self: start;
      color: #3f9681 !important;
    }

    (ps hier ist das !important nötig, da du einen inline-style gesetzt hattest – mit dem Einfärben im Textfeld)

    wenn du der ganzen Liste ( also dem ul tag ) nur noch eigenschaften geben möchtest :

    #top .my-listings {
      padding: 5px;
      background-color: #f8f8f8;
      border: 1px solid #3f9681; 
      border-width: 1px 0px 0px 1px !important; /* unterschiedliche Border Weiten für : Oben, Rechts, Unten, Links */
    }

    Resultat wäre dann:

    wenn dir der Abstand der Zeilen ( der li elemente ) zu groß ist, dann ändere diesen Wert bei den
    #top .my-listings li auf z.B. 5px

    du siehtst, über diese custom class my-listings – ist dann alles geregelt. Sobald du eine Liste einsetzt, und den text-block mit der Klasse versiehst, wird die darin enthaltene Liste so dargestellt.

    _____________

    Responsiv ( für Mobile screenweiten im Hochkant Format)

Viewing 30 results - 301 through 330 (of 244,342 total)