Viewing 30 results - 2,521 through 2,550 (of 244,163 total)
  • Author
    Search Results
  • #1483242
    agentur2c
    Participant

    Hallo Enfold-Team,

    ich habe für den Blog Kategorien angelegt. Wenn ich eine daraus auswähle erscheint eine Übersichtsseite, die alle getaggten Artikel auflistet. Leider passt die Seite von der Optik her überhaupt nicht ins Design. Die Fotos fehlen, es ist kein Titelbild drin und die Seite sieht sehr technisch aus und unübersichtlich.

    Kann man die gestalten und wenn ja, wie?

    I’ve created categories for my blog. When I select one, an overview page appears that lists all tagged articles. Unfortunately, the page doesn’t fit the design at all. The photos are missing, there’s no cover image, and the page looks very technical and confusing.

    Can I customize them, and if so, how?

    Kind regards,
    Constanze

    #1483237

    In reply to: Caption in Easy Slider

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    #top #wrap_all #av-burger-menu-ul > li,
    #top #wrap_all #av-burger-menu-ul > li a {
    	top:0 !important;
    	opacity:1 !important;
    	padding: 4px 0 !important;
    }
    }
    @media only screen and (min-width: 768px) { 
    #top #wrap_all #av-burger-menu-ul > li,
    #top #wrap_all #av-burger-menu-ul > li a {
    	top:0 !important;
    	opacity:1 !important;
    }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1483230

    In reply to: Caption in Easy Slider

    Hey stefpasi,
    You probably have the caption set to “bottom without frame” in the slide:
    Screen Shot 2025 04 26 at 11.51.03 AM
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .caption_fullwidth {
        position: relative;
        top: 20em;
    }

    Screen Shot 2025 04 26 at 12.01.53 PM
    adjust to suit.

    Best regards,
    Mike

    #1483228

    Hey Sylvain,
    You can use the layerslider with a transparent header like this: https://kriesi.at/themes/enfold-2017/
    or the fullscreen slider with a transparent header like this: https://kriesi.at/themes/enfold-2017/elements/fullscreen-slider/
    or add the image as a background image color section: https://kriesi.at/themes/enfold-2017/elements/color-section/
    this is another color section example with a transparent header: https://kriesi.at/themes/enfold-2017/pages/blank-pages/coming-soon-page/

    Best regards,
    Mike

    #1483226

    Hey nm,
    Thank you for your patience, to move cookie consent bar to top of the DOM so it is first in the tabindex, add the following code to the end of your child theme functions.php file in Appearance ▸ Editor.
    The code also adds tabindex to the hidden checkboxes in the moral and hides the “toggle” switches, so the checkboxes can be tabbed to.
    When tabbing in the moral you will first be able to tab though the tabs and use the enter key to select one, then keep tabbing to get inside the tab content and tab through the checkboxes. You can use the spacebar to enable/disable the checkboxes.

    function move_cookie_consent_bar_to_top_of_dom_so_it_is_first_in_tabindex() { ?>
      <script>
    	  document.addEventListener('DOMContentLoaded', function() {
        const messageBar = document.querySelector('.avia-cookie-consent-wrap');
        const body = document.querySelector('body#top');
        body.prepend(messageBar);
    });
    document.addEventListener('DOMContentLoaded', () => {
      document.querySelectorAll('#av-consent-extra-info input[type="checkbox"]').forEach(checkbox => {
        checkbox.setAttribute('tabindex', '0');
      });
    });
      </script>
    <style>
    #top .av-toggle-switch input[type="checkbox"] {
        display: inline;
    }
    #top .av-toggle-switch .toggle-label-content {
        display: inline;
    }
    #top .av-toggle-switch label .toggle-track {
        display: none;
    }
    </style>
      <?php
    }
    add_action( 'wp_footer', 'move_cookie_consent_bar_to_top_of_dom_so_it_is_first_in_tabindex', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    This may not seem intuitive, so perhaps you will want to try a cookie bar plugin like Borlabs, I don’t know how keyboard tabbing works with it but many Enfold users like it.
    If you are happy with just tabbing to accept or reject cookies with just a few tab keys then the above script will work fine, I see that your consent moral only has two checkboxes.

    Best regards,
    Mike

    #1483222
    Sylvain
    Guest

    Hello, I’m trying a version of Enfold 7.0 loaned by a friend, to be sure before buying it. That looks really good! But I encounter a problem that seems basic to me… Impossible to put a background-image header that stretches over the entire width of the header, I can’t find an option for that… Even customizing the css myself. Could you please tell me if this is possible? Many thanks to you!

    #1483211

    Hey schweg33,
    These are hidden on mobile devices, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 325px) {
        .responsive #top .avia-post-nav {
            display: block;
            top: 20%;
        }
    }
    @media only screen and (min-width: 325px) and (max-width: 380px) {
        .responsive #top .avia-post-nav {
            display: block;
            top: 23%;
        }
    }
    @media only screen and (min-width: 381px) and (max-width: 450px) {
        .responsive #top .avia-post-nav {
            display: block;
            top: 25%;
        }
    }
    @media only screen and (min-width: 451px) and (max-width: 767px) {
        .responsive #top .avia-post-nav {
            display: block;
            top: 38%;
        }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    coleen15
    Participant

    I’m using NameCheap hosting, have an SSL certificate, have chatted with NameCheap hosting and they modified my php.ini and tested a variety of things and told me I needed to reach out to “kriesi.at” as that’s where the issue is coming from.

    No matter what demo I try to install, I get the following error:

    Error accessing file for download:
    cURL error 28: Connection timed out after 10002 milliseconds

    I’ve tried the instructions from the following URL to try to manually install the demos (URL: https://kriesi.at/documentation/enfold/import-demos/ )
    “Please add following line to Functions.php file in Appearance > Editor
    add_theme_support( ‘avia_demo_store_downloaded_files’ );

    Download the zip file of the demo you would like to import from https://github.com/KriesiMedia/enfold-library/tree/master/demos
    Extract it in \uploads\avia_demo_files\ folder. If you are importing Enfold 2017 demo, files should be extracted inside \enfold-2017\ so it should look as \uploads\avia_demo_files\enfold-2017\
    Go to Enfold theme options > Demo Import and import the demo”

    I’m absolutely pulling my hair out…this shouldn’t be this difficult and I have no idea what is wrong….I’ve installed WordPress and themes hundreds of times and NOTHING is working.

    Can you offer some assistance? I’ve included both admin credentials to my wordpress installation along with cPanel login details.

    • This topic was modified 10 months ago by coleen15.
    #1483133

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1482958

    Hi,
    Please check that you are using Enfold v7.1, and try disabling all of your plugins and then reload the page. If that resolves the issue, reactivate each one individually and reload the page until you find the conflict.
    If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    #1482957

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) {
        .responsive #top #wrap_all .container.caption_container {
            width: 100%;
            max-width: 100%;
        }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1482911

    Hey ballindigital,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #header #header_meta {
        z-index: 1;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1482901

    Hey JoStudioDeRijp,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .avia-content-slider .slide-meta time {
    	display: none;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hey oladigital_co,
    Thank you for your patience, I don’t have a iPhone, but I tested in Safari on a Mac in Responsive Design Mode iOS simulator, I also checked on live.browserstack.com iOS simulator, and both worked for me, please see the screenshot in the Private Content area.
    I do see an error: /?avia_forced_reroute=1 404 (Not Found) in your console, try going to Enfold Theme Options > Custom Error 404 Page > Redirect to selected page and change the settings to “Select page”
    Screen Shot 2025 04 25 at 9.50.08 AM
    you may have an old setting in there.
    Please note that testing with iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.

    Best regards,
    Mike

    #1482863

    Hi,
    Glad Guenni007 could help, thank you Guenni007, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1482861

    Hi,
    *update* I tested the above script that you posted “Fix Yoast SEO pagination compatibility with Enfold theme using avia-element-paging” and it solved the issue on my site
    <link rel="canonical" href="https://enfold.site.com/blog/blog-default/?avia-element-paging=2" class="yoast-seo-meta-tag">
    If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    use wpcode php snippet and activate
    and ensure that it is activated, then add the above code without the leading <?php and save.

    Best regards,
    Mike

    #1482815
    JoStudioDeRijp
    Participant

    Hi Enfold, how can I remove the dates in the list of posts?
    I hope you can help me!

    #1482776

    Thanks Ismael but I don’t have that setting in the quick css section, where do you see it?
    I only have the setting Enfold > General Layout > Dimensions panel = 1500px

    #1482690

    Hi,

    Thanks for the update. lease open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1482611

    Hey Gianluca,

    Thank you for the inquiry.

    What happens when you remove this css code?

    .responsive .container {
        max-width: 1500px;
    }

    This overrides the Maximum Container Width value in the Enfold > General Layout > Dimensions panel.

    Best regards,
    Ismael

    #1482593

    Hey ricedean,

    Thank you for the inquiry.

    What happens when you toggle or temporarily disable the Enfold > Performance > File Compression settings? To temporarily fix the issue, try adding this code in the Quick CSS field.

    #top .avia-buttonrow-wrap {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        align-content: center;
    }

    Best regards,
    Ismael

    #1482565
    bemodesign
    Participant

    Can you get me CSS code to reduce the stretch of the Easy Sliders on my home page? But need to be careful because I need the stretched image for the Top Full Width Slider images. Last time the code reduced both. I just need the Easy Sliders reduced. Here is screenshot of long images: https://img.savvyify.com/image/Screen-Shot-2025-04-24-at-9.20.36-PM.9qqfd

    This same thing happened on this support thread, but it won’t fix this current issue. Here is the old thread: https://kriesi.at/support/topic/i-need-css-code-for-enfold-theme-reduce-stretched-image-on-mobile-view-for-easy/

    This code didnt work:

    .responsive #top .avia-slideshow-inner, .responsive #top .avia-slideshow-inner img {
    height: auto !important;
    }

    .responsive #top .avia-slideshow-inner, .responsive #top .avia-slideshow-inner img {
    height: 450px !important;
    object-fit: cover;
    }

    #1482350
    twdf
    Participant

    I just installed 7.1, and I noticed that the templates feature is gone, and I can’t get it to come back. Is that because Enfold isn’t yet compatible with WordPress 6.8?

    #1482266

    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

    Hi,

    Great, I’m glad to hear that you found a solution. 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

    Perhaps the scrolling problem is not an enfold-issue but an WordPress issue. I did not find the CCS-file yet where that class is defined.

    The other thread …
    Problem with scroll bar Advanced Layout Editor

    Hey,
    I’m sure how to use this, I have no clue about any code.

    I’m about to make several pages using the Product Grid element, wils this code affect all pages in the site.

    I need to know before starting to build a new client site, is this possible in Enfold are should I go with another pagebuilder?

    Thanks ;)

    #1482197
    GWS
    Participant

    Hi,
    I’m following up on a similar topic I started about the search widget: https://kriesi.at/support/topic/search-widget-no-longer-working-correctly-since-update-to-enfold-7/

    I couldn’t respond to the topic earlier, but I appreciate your help with the custom search box widget. The CSS you provided works perfectly for the custom search widget located below the layerslider on the homepage. However, it also affected the search icon on the navigation menu bar. Instead of displaying the default SVG image for the navbar search box, it’s showing the custom widget’s image. Moreover, the search icon is misaligned within the text box entry area. When I attempt to modify the CSS for the navbar search box, it inadvertently changes the search icon in the page content widget. While the custom search widget is in great shape now, we need to restore the default SVG image and its position for the navbar search widget.

    Could you guide me on restoring the SVG image to the navbar search box without it impacting the custom search widget in the homepage content area?

Viewing 30 results - 2,521 through 2,550 (of 244,163 total)