Viewing 30 results - 14,251 through 14,280 (of 244,614 total)
  • Author
    Search Results
  • #1415919

    In reply to: Font and logo size

    Hi,

    To change menu font size, please go to Enfold theme options > Advanced Styling, edit Main Menu Links, and change the Font Size (https://i.imgur.com/jS0vXnj.png).

    Best regards,
    Yigit

    #1415915

    In reply to: Font and logo size

    oh thank you it works now :) and how i can change the font size? from the settings above what Ismael told me Enfold > General Styling > Typography panel. nothing is changed…

    #1415914

    Hi Dominic,

    I’m afraid we don’t have a quick snippet for this modification. Please feel free to request this at https://github.com/KriesiMedia/Enfold-Feature-Requests.

    If that’s something you urgently need, we’d recommend you hire a freelance developer for the task. Unfortunately, this would be out of the scope of our support.

    Best regards,
    Yigit

    #1415913

    Hey Marcus,

    Please go to Appearance > Widgets, add a new Custom Widget Area, insert a Custom HTML widget inside your custom widget area, and add your number using HTML (https://i.imgur.com/dTBtxdG.png).

    After that, go to Enfold theme options > General Layout > Layout > Main Menu Sidebar, and select your custom widget area (https://i.imgur.com/ahMKgFr.png).

    Best regards,
    Yigit

    #1415912

    Hey waveseven,
    Thanks for your patience, unfortunately I don’t know of any way to turn off Classic editor for CTP, you can switch to the Block Editor at Enfold Theme Options ▸ Select Your Editor
    I personally prefer the Classic Editor, but unfortunately many plugins are only being created for the Block Editor now, I don’t know of anything we can do if the plugin is not compatible with the Classic Editor.

    Best regards,
    Mike

    #1415911

    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,

    The issue is in LayerSlider 7.7.10 which is included in Enfold 5.6.5. The LayerSlider team fixed the issue in version 7.7.11.

    We’ll update LayerSlider and release an update.

    Downgrading Enfold to version 5.6.3 would fix this issue. I attached it in the private content field.


    @perfectword
    I cannot see the issue on your website. Please let us know if you’d like us to email you version 5.6.3.

    Best regards,
    Yigit

    #1415906

    In reply to: Font and logo size

    Hi,

    Please go to Enfold theme options and make sure that you’re uploading your logo in full size (https://i.imgur.com/FRhblpV.png). Currently, you are using the 300x78px version.

    If you need help with that, please share temporary admin login credentials with us in the private content field.

    Best regards,
    Yigit

    #1415885

    Hey ewebbdesigns,

    Thank you for the inquiry.

    Please refer to this post for more information on how to troubleshoot issues with the contact form.

    // https://kriesi.at/documentation/enfold/contact-form/#troubleshoot

    If the issue persists, please provide the login details in the private field.

    Best regards,
    Ismael

    #1415883

    Hey Tri,

    Thank you for the inquiry.

    Adding the following css code should fix the issue with the header.

    .html_header_top.html_header_sticky #header {
        position: fixed;
        z-index: 999999;
    }

    Please make sure toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect. By disabling the file compression settings, you will be able to make the necessary adjustments and updates without any conflicts. Once you have made the required modifications, you can re-enable the file compression settings to optimize the performance of your website.

    Best regards,
    Ismael

    #1415877

    In reply to: Font and logo size

    Hey samis37,

    Thank you for the inquiry.

    You can use the following css code to adjust the size of the logo.

    .logo img, .logo svg {
        zoom: 120%;
    }
    
    .header-scrolled .logo img, .header-scrolled .logo svg {
        zoom: 90%;
    }

    To adjust the font sizes of the body and heading text, please go to the Enfold > General Styling > Typography panel.

    Best regards,
    Ismael

    #1415875

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

    #full_slider_1 .avia-slideshow li.av-single-slide {
    	-webkit-animation: 0s ease 0s normal none 1 running none !important;
    	animation: 0s ease 0s normal none 1 running none !important;
    	visibility: visible !important;
    	opacity: 1 !important;
    }

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

    Best regards,
    Mike

    #1415874

    Hi,
    For that you will need to add a plugin or a script, and you will need to add more content to your test page.
    I see you are not using a child theme so I recommend the WPcode plugin for your customizations, this plugin supports PHP code snippets, JavaScript code snippets, & CSS code snippets.
    Add this code as a new snippet for the Code Type PHP Snippet

    function sticky_sidebar_script() { ?>
      <script>
    (function ($) {
        $(window).scroll(function (e) {
          var $sticky = $('.inner_sidebar');
          var position = ($sticky.css('position') == 'fixed');
          if ($(this).scrollTop() > 1 && !position) {
            $sticky.css({ 'position': 'fixed', 'top': '170px', 'width': $sticky.innerWidth() });
            $sticky.next().css('float', 'right');
            $sticky.addClass('fixed_element_style');
          }
          if ($(this).scrollTop() < 1 && position) {
            $sticky.css({ 'position': 'static', 'top': '0px', 'width': '' });
            $sticky.next().css('float', 'left');
            $sticky.removeClass('fixed_element_style');
          }
        });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'sticky_sidebar_script');

    Enfold_Support_2871.jpeg
    I added it to this test page so you can it it working, you can adjust the position 170px in the code to suit.
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    #1415871

    In reply to: Logo Font Color

    Hi,
    Thanks for the link to your site, there are two places to add the logo:
    Enfold Theme Options ▸ Logo
    Enfold Theme Options ▸ Header ▸ Transparency Options ▸ Transparency Logo

    your transparent logo, which is used when you use a transparent header, was using the one with black text, I corrected it for you, please clear your browser cache and check.

    Best regards,
    Mike

    #1415857

    In reply to: Design

    Hey Tim,

    You can turn that off under Enfold->Advanced Styling. Look for the Linked Image Overlay element.

    Best regards,
    Rikard

    #1415852

    Hi,
    I’m not sure what you mean, in our demo the sidebar items stay at the top of the sidebar when you scroll, do you mean that yours are fixed and stay visible as you scroll?
    This sounds like you have a added script or plugin doing this, please link to your page so we can see.

    Best regards,
    Mike

    #1415851

    Hey thomasianwilson21171,
    You should be able to jump to v5.6.5. Afterward you can create a Envato token on your Envato (Theme Forest) account for future updates, as the old API is no longer used.
    However I recommend creating a staging site to first test the upgrade on as we don’t know if you have any customizations. If you are using a child theme with a custom header.php or footer.php first remove these as these files have changed and typically will cause errors with an update. We don’t recommend this practice but add your customizations to your child theme functions.php instead.
    Most cPanel webhosts have a staging site option, some in the dashboard:
    staging-1.jpeg
    Others add the option in the Softaculous WordPress Management
    2022-12-11_001.jpeg
    There may be other staging site options in different cPanel servers, these are the two that I have seen.

    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

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

    #header_meta .sub_menu .menu li a {
        color: #030303 !important;
    }

    After applying the css, please clear your browser cache and check.
    Adjust the color to suit.

    Best regards,
    Mike

    #1415847

    Hi,
    Thank you for the link to your site, but the login is not admin so I can’t see the backend of the page, I have compared your page to my parallax demo and see the section that you removed between the three columns in the #service color section and the grid column. The #service color section has a bottom margin of 80px to allow room for the element that you removed, so change this to a negative 80px or more if you want the sections tighter.
    Enfold_Support_2869.jpeg
    Changing the bottom margin to -80px will match the three column’s -80px top margin so the next element is where it should be.

    Best regards,
    Mike

    #1415842

    Hi,
    Glad to hear that you have this sorted out, 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

    #1415841

    If I have Enfold 4.4.1 and want to update to the latest 5.6.5 ,
    do I have to go up incrementally from every version in between or can I just do a major jump to 5.6.5?

    That is all I am looking for. Thank you.

    #1415840

    Hi,
    Glad to hear that you have this sorted out, 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

    #1415838

    Hi,

    I suspect one of the modified files on your child theme could be causing this issue. However, the Theme Editor is disabled in the WordPress admin panel > Appearance so I couldn’t check.

    Please temporarily switch to Enfold parent theme, clear the caches, and check if that resolves the issue.

    If it doesn’t, please share FTP logins with us in the private content field as well.

    Best regards,
    Yigit

    #1415834

    Topic: Z-Index does not work

    in forum Enfold
    Monika
    Participant

    Hey There,

    i have some challenges with understanding how the Z index works in enfold perhaps you can help me understand whats going on there.

    You see it in mobile version (see link).. i want these two Badges to be on the top, but they hide behind the previous section even tough i gave this Color Section a Z index of 999!
    How is that possible that the color section above this is higher than 999?

    #1415821

    Hey Stefan,

    Glad you figured it out! Let us know if you have any other questions :)

    Future readers, please add the following code to the Quick CSS field in Enfold theme options > General Styling tab:

    
    #top .avia-icon-list .iconlist-timeline {
      border: none;
    }
    

    Best regards,
    Yigit

    #1415818

    In reply to: Arrow scroll up

    Hi,

    Please add the following code to the bottom of Quick CSS field in Enfold theme options > General Styling tab:

    
    #scroll-top-link {
      backdrop-filter: blur(15px);
      background-color: rgba(20, 21, 23, 0.3);
      box-shadow: 0 3px 4px rgba(0,0,0,0.5);
      border: none;
    }
    

    Best regards,
    Yigit

    #1415815

    Hi,
    If you only want the title to show on archive pages I would recommend selecting Enfold Theme Options ▸ Header ▸ Header Layout ▸ Header Title and Breadcrumbs and then use css to hide it from all page except archives, linke this:

    #top:not(.archive) .title_container .main-title.entry-title {
    	display: none;
    }

    Then I assume you will want to remove the text before the title on archive pages like Archive for category: , Tag Archive for: , Archive for: I recommend adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function remove_archive_title_pre_text() { ?>
      <script>
    (function($){
    $('#top.archive .title_container .main-title.entry-title a').contents().filter(function() {
      return this.nodeType == 3
    }).each(function(){
      this.textContent = this.textContent.replace('Archive for category:','');
      this.textContent = this.textContent.replace('Tag Archive for:','');
      this.textContent = this.textContent.replace('Archive for:','');
    });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'remove_archive_title_pre_text');

    Best regards,
    Mike

    #1415812
    waveseven
    Participant

    I’m currently building a news site with Enfold and MemberPress. MemberPress has a “courses” section where you can add courses and lessons. However because we use the classic editor/ALB for Enfold, the pages for creating courses and lessons doesn’t seem to function properly as it’s expecting to use WordPress Blocks builder. (see image)

    I’ve contacted MemberPress to see if there was a way to use the classic editor and there first answer was to change to Blocks. Second answer was to contact Enfold to turn off Classic editor for CTP (whatever that means)? I would rather keep using the classic editor (and if possible ALB) for the MemberPress courses and lessons creation. Is there a way around this that you know of?

    Is there a way to turn off Classic editor for CTP ?

    Regards
    Colin

    #1415810

    In reply to: Demo import

    Hi,

    You are welcome! I’m glad Rikard and Nikko could help.

    For your information, you can take a look at Enfold documentation at https://kriesi.at/documentation/enfold/.

    If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you.

    Best regards,
    Yigit

    #1415796

    In reply to: Demo import

    Hi rudito,

    Your website points to http, I have changed to https in Enfold > Settings > General: WordPress Address (URL) and Site Address (URL).
    The demo failed the first time I tried to import the demo as it returns an error 500 but the second time I tried, it worked.
    Please review your website.

    Best regards,
    Nikko

Viewing 30 results - 14,251 through 14,280 (of 244,614 total)