Viewing 30 results - 5,311 through 5,340 (of 142,866 total)
  • Author
    Search Results
  • #1439921

    Hi,
    It looks like you had this thread that was for a different donain and the css you added creates the black bar by adding padding to the top, I removed it for you.

    Best regards,
    Mike

    #1439915

    Hi,
    It looked like you added many menu options in the Enfold Theme Options ▸ Advanced Styling and each was empty so the empty setting was overriding the Enfold Theme Options ▸ General Styling settings. I removed these for you and now your menu is back to the way it was.
    If you want to use the Enfold Theme Options ▸ Advanced Styling to change the colors then you can, but to need to add the new colors for it to work.
    I believe that we have solved your Header Widget that was the topic of this thread, please let us know if so we should now close this thread.
    Please note that we ask that each thread stays on a specific topic, this helps other users and Mods. For further questions please open a new thread

    Best regards,
    Mike

    #1439900

    Hey Julien,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function avf_magazine_entries_query_mod($query, $params)
    {
    if (is_page(3961)) {
    $query['order'] = 'ASC';
    }
    return $query;
    }
    add_filter('avf_magazine_entries_query', 'avf_magazine_entries_query_mod', 10, 2);

    adjust the page ID to suit.
    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:
    Enfold_Support_2680.jpeg
    then add the above code and save.

    Best regards,
    Mike

    #1439891

    Hi,
    When I check your mobile menu items they do not include any attributes, such as the proper classes:
    Enfold_Support_5412.jpeg
    The parent menu items have classes, but all menu items should have classes, I also don’t know why each menu item is wrapped in a “sub-menu” ul
    this is what they should look like:
    Enfold_Support_5414.jpeg
    note that the current menu item has the class current-menu-item this is what tells the css to highlight it, without classes it won’t work.
    Your desktop menu seems to be correct.
    So I don’t know if this is a plugin conflict or if you have some customization in your child theme because the theme editor is not showing so I can’t see the child theme functions.php.
    Do you know if you have any customizations that might remove the classes?
    Do you want to create a staging site for us the test on?

    Best regards,
    Mike

    #1439888

    Hi,

    Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1439887

    Hi,

    Great, I’m glad that you found it. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1439878

    In reply to: Fonts not responsive

    if you set up a rule on “Advanced Styling” for example for a h1 – the rule is noted as:

    #top #wrap_all .all_colors h1 {
      font-family: 'brush script mt',Helvetica,Arial,sans-serif;
    }

    the selector got 2 IDs – so it has a high specifity (https://www.w3schools.com/css/css_specificity.asp)
    and see how the specifity counts: https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity

    But if there is another rule f.e. in quick css that got a higher specifity – or is set to !important – “Advanced styling rule” is ignored.
    f.e. as: #top #wrap_all #main .all_colors h1
    For this reason, I add rules to my Quick CSS with at least one ID (#top) that should “win”.
    I try to avoid using !important.

    #1439867

    Hey pnamroud,
    Our current version is 5.7
    If you are using the Advanced Layout Builder to create your posts you could add a widget element to your posts and add the TOC widget to the sidebar displayed in the widget element.
    2022-04-08_009.jpg
    If you are using the WordPress editor for your posts you could try this javascript TOC, first add this code to your post: <div id="toc"></div> in the “text” tab:
    Enfold_Support_5400.jpeg
    Then add this code to the end of your child theme functions.php file in Appearance ▸ Editor, 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:
    Enfold_Support_2680.jpeg
    then add this code and save.

    function custom_toc_script() { ?>
      <script>
    document.addEventListener('DOMContentLoaded', function() {
        htmlTableOfContents();
    } );                        
    
    function htmlTableOfContents( documentRef ) {
        var documentRef = documentRef || document;
        var toc = documentRef.getElementById("toc");
    	var content = document.querySelector(".single-post .entry-content"); 
    	var headings = content ? [].slice.call(content.querySelectorAll( "h1, h2, h3, h4, h5, h6")) : []
        //var headings = [].slice.call(documentRef.body.querySelectorAll('#content h1,#content h2,#content h3,#content h4,#content h5,#content h6'));
        headings.forEach(function (heading, index) {
            var ref = "toc" + index;
            if ( heading.hasAttribute( "id" ) ) 
                ref = heading.getAttribute( "id" );
            else
                heading.setAttribute( "id", ref );
    
            var link = documentRef.createElement( "a" );
            link.setAttribute( "href", "#"+ ref );
            link.textContent = heading.textContent;
    
            var div = documentRef.createElement( "div" );
            div.setAttribute( "class", heading.tagName.toLowerCase() );
            div.appendChild( link );
            toc.appendChild( div );
        });
    }
    
    try {
        module.exports = htmlTableOfContents;
    } catch (e) {
        // module.exports is not defined
    }
    	  </script>
      <?php
    }
    add_action('wp_footer', 'custom_toc_script');

    This is the result:
    Enfold_Support_5402.jpeg
    There are many TOC plugins available, if you would like a different style, the RankMath SEO plugin also includes a TOC that works with Enfold.

    Best regards,
    Mike

    #1439857
    woogie07
    Participant

    Hi,

    I have a content slider (private content) on my page.

    1/ Mobile visibility – This is set to 3 columns on desktop. On mobile it stacks as 1 column, then 2 columns.
    Is there any css so that sit stacks as 1 column under each other x 3?

    2/ Navigation arrow controls – is there any css so that these appear larger?

    Thanks

    #1439855
    This reply has been marked as private.
    #1439839

    In reply to: Hover Text Red

    Hi,
    Try this CSS instead, and adjust the font size to suit.

    #top.home #av_section_2 .avia_textblock > h2 > a:hover strong,
    #top.home #av_section_2 .avia_textblock > h2 > strong a:hover {
    	color: #a62c0a;
    	font-size: 40px;
    }

    Best regards,
    Mike

    Hey Intell,

    Please try the following in Quick CSS under Enfold->General Styling to align the logo on mobile devices:

    @media only screen and (max-width: 767px) {
      .responsive #top .logo {
        position: static;
        display: table;
        height: 80px !important;
        float: none;
        padding: 0;
        border: none;
        width: 60%;
      }
    }

    When you have activated the child, then please go to Enfold->Import/Export and import the parent theme settings. If your settings don’t apply after that, then please try to save the theme options in order to regenerate the theme resources.

    Best regards,
    Rikard

    #1439818

    In reply to: Hover Text Red

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

    #top.home #av_section_2 .avia_textblock > h2 > a:hover strong,
    #top.home #av_section_2 .avia_textblock > h2 > strong a:hover {
    	color: #a62c0a;
    }

    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

    Hey Chris_85,
    Thank you for your patience, when the product filters are used the page is reloaded, this is why the page is then shows at the top, to work around this I would recommend adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function restore_the_scroll_position_after_reload() { ?>
      <script>
    window.addEventListener('beforeunload', function() {
        localStorage.setItem('scrollPosition', JSON.stringify({
            path: window.location.pathname,
            position: window.scrollY
        }));
    });
    window.addEventListener('load', function() {
        const saved = JSON.parse(localStorage.getItem('scrollPosition'));
        if (saved && saved.path === window.location.pathname) {
            window.scrollTo(0, saved.position);
        }
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'restore_the_scroll_position_after_reload', 99 );

    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:
    Enfold_Support_2680.jpeg
    then add the code and save. Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Below you can check my test page where I have a large space and then the product grid and when the filter is used and the page is reloaded the page shows at the same place.
    But when I test this on your page by injecting it via the browser it seems to work by scrolling back to the correct location after the top of the page is seen. This doesn’t occur on my test page. On your page in the browser console I see the message: Scrolling to section was successful or max attempts reached., this seems to come from a custom javascript file in your child theme: /enfold-child/inc/js/jongo-js.js try disabling the custom this javascript, if you need the custom javascript then perhaps this behavior will be acceptable.

    Best regards,
    Mike

    #1439784
    bemodesign
    Participant

    THESE ISSUES ARE ON MOBILE VIEW ONLY:
    Ok, so when I added the final code that you gave me from question #1433939. It worked on moving the blog pages headlines down, so they didn’t get cut off when I’m not using Transparent Header, BUT, now all the page that had “transparent headers” have a black bar at the top. See images attached. I also attached the website login. Please check the mobile view. I really need the Transparent header black bar, to go away on mobile view. thanks

    #1439764

    In reply to: Maintenance mode

    Hey rixi,
    Please go to the maintenance mode option and then enable it, then in the dropdown that shows the list of pages choose the top choice “select page”, then disable the maintenance mode option and save the theme settings.

    Best regards,
    Mike

    #1439757
    Moondreamer21
    Participant

    Hello,
    I updated Enfold about a month ago. I have a child theme.
    I noticed that on a couple of my customized sales pages that the background image no longer shows up since the update.
    There is code in the CSS (that I can edit in WordPress -> Enfold Child -> Theme Options -> General Styling that tells these two pages what background image to have.
    Any ideas why these would stop working and what I can do about it?
    Thanks.

    #1439752
    Caiser_Souze
    Participant

    In one site I use Magazine element several times, but I would like that are in some of them the publication date is reversed.

    In connection with this post [https://kriesi.at/support/topic/magazine-reverse-the-order/&#93; I was able to reverse the dates.
    However, I would like it not to be this way on all Magazine elements on the site, only on some specific ones.

    Can you make this function apply only on specific Magazine blocks that have an ID for example? Or are there other ways or methods?

    Thanks for help

    #1439751

    Topic: submenu

    in forum Enfold
    vbonora
    Participant

    Hi Kriesi, I need help getting a fixed menu like this one: https://xd.adobe.com/view/61489a4e-0786-455b-a43b-4b5e3061151e-341b/screen/f5805a3f-f75c-414d-a1cf-b36df0ffd18a. I’m using the submenu, but it stays stuck at the top instead of being fixed at the bottom like I need. I’ll leave you the link to the website and the credentials, can you help me?

    #1439744

    In reply to: Featured image

    Hi,

    Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1439742

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1439734

    In reply to: Ninjaforms datepicker

    This is the answer from ninjaforms:

    My name is Mia and I lead the Customer Success team here at Ninja Forms.

    As Keith has previously informed you, this looks like a problem with how the Enfold theme works. Like you told us? When Enfold is turned off, the functionality works. When Enfold is enabled, it breaks. Ninja Form’s css is sometimes overwritten by the theme’s styles. That’s what appears to be happening in this case. From reading the exchanges in this ticket it sounds like that you have tracked down the particular css for the issue. What you might try is adding custom css in Enfold to change the css behavior for that particular element (see below) to make it do what you need it to.

    .flatpickr-calendar.animate.arrowTop.arrowLeft.rightMost.open

    That should overwrite Enfold’s css since you’d add it in Enfold’s settings. We wouldn’t be able to help with where it is added since we don’t support their theme but it’s likely in their theme editor. When you test your changes make sure and flush any cache so you get fresh results.

    We certainly do appreciate your long standing relationship with us and your business but our policy has always been not to support other plugins or themes.

    Thanks

    Mia

    Interesting game you guys on both sides are playing. I paid for both “plugins” and get no support.

    • This reply was modified 1 year, 11 months ago by sj.

    Hi,

    You can use the following css code to adjust the style of the Special: Email Icon:

    #top #wrap_all .av-social-link-mail:hover a {
        background-color: transparent !important;
        color: #a7a7a7 !important;
    }

    If you need more assistance, please feel free to open another thread.

    // https://kriesi.at/support/forum/enfold/#new-post

    Best regards,
    Ismael

    #1439714

    In reply to: personal token

    Hi Hans,

    The update to 5.7 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 new theme files via Appearance->Themes->Add New, and select to overwrite the old theme files after the upload has finished.

    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

    #1439687

    Topic: Favicon on ios

    in forum Enfold
    lion73
    Participant

    This problem has been plaguing me for a long time, the favicon is not displayed on mobile devices (iPhone and iPad) only on desktop…

    • This topic was modified 1 year, 11 months ago by lion73.
    #1439671
    oliviersia09
    Guest

    Hey,
    I cannot answer directly on:

    My (37) licenses are more than 6 months old.
    I don’t know how to contact you for a problem following an Enfold update.
    I tried several times from 5.6.12 to 5.7.
    Every time I go back to 5.6.12 it’s ok.
    For all updates to Enfold, I systematically do this Enfold->Performance deactivated/re-activated the option to delete old CSS and JS files.
    I cleared my cache (WP-Rocket) but also deactivated the extension.
    Please see the video.
    Cordialy,

    #1439658

    In reply to: URL hiding

    Hi,

    Great, I’m glad that we could help. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1439648

    Hi Mike & Ismael,
    i seems find the solution to show like categories.

    20240410210739.jpeg

    may i know how to change some and use in tag page.

    Thanks and best regards,

    Wang

    #1439646

    1) give a custom class to the masonry gallery – f.e. : custom-gap and put this to your quick css:

    #top #wrap_all .av-masonry.custom-gap .av-masonry-entry .av-inner-masonry {
      margin-right: 50px;
      margin-bottom: 50px;
    } 

    2) what do you mean by: gap is selected ?

    #1439642
    Lion73
    Guest

    This problem has been plaguing me for a long time, the favicon is not displayed on mobile devices, only on desktop…

Viewing 30 results - 5,311 through 5,340 (of 142,866 total)