-
AuthorSearch Results
-
August 9, 2023 at 1:35 pm #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,
YigitAugust 9, 2023 at 1:01 pm #1415915In 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…
August 9, 2023 at 12:51 pm #1415914In reply to: Pause slider button for Accessibility
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,
YigitAugust 9, 2023 at 12:46 pm #1415913In reply to: Left Column Navigation – adding call number
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,
YigitAugust 9, 2023 at 12:32 pm #1415912In reply to: Enfold and MemberPress “Courses”
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,
MikeAugust 9, 2023 at 12:23 pm #1415911In reply to: Easy Fullwidth Easy slider. No Transition
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,
MikeAugust 9, 2023 at 12:17 pm #1415909Hi,
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,
YigitAugust 9, 2023 at 11:59 am #1415906In 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,
YigitAugust 9, 2023 at 4:39 am #1415885In reply to: Contact Form Not Working
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,
IsmaelAugust 9, 2023 at 4:26 am #1415883In reply to: Slider Revolution – Show Header at All Times
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,
IsmaelAugust 9, 2023 at 2:56 am #1415877In 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,
IsmaelAugust 9, 2023 at 2:23 am #1415875In reply to: Easy Fullwidth Easy slider. No Transition
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,
MikeAugust 9, 2023 at 2:05 am #1415874In reply to: Page navigation design advice
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 Snippetfunction 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');
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,
MikeAugust 9, 2023 at 1:18 am #1415871In 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,
MikeHey Tim,
You can turn that off under Enfold->Advanced Styling. Look for the Linked Image Overlay element.
Best regards,
RikardAugust 8, 2023 at 6:36 pm #1415852In reply to: Page navigation design advice
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,
MikeAugust 8, 2023 at 6:28 pm #1415851In reply to: INSTALL UPDATE- Enfold 4.4.1 to latest 5.6.5
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:

Others add the option in the Softaculous WordPress Management

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

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

then you will see the Theme updated successfully message.
Best regards,
MikeAugust 8, 2023 at 6:15 pm #1415849Hi,
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,
MikeAugust 8, 2023 at 6:04 pm #1415847In reply to: Massive gap above Grid Row in Parallax template
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.

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,
MikeAugust 8, 2023 at 5:39 pm #1415842In reply to: Issue with Google reCaptcha while submitting form
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,
MikeAugust 8, 2023 at 5:39 pm #1415841Topic: INSTALL UPDATE- Enfold 4.4.1 to latest 5.6.5
in forum Enfoldthomasianwilson21171
ParticipantIf 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.
-
This topic was modified 2 years, 8 months ago by
thomasianwilson21171.
August 8, 2023 at 5:38 pm #1415840In reply to: H1 headings on Archive pages for Accessbility
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,
MikeAugust 8, 2023 at 5:23 pm #1415838In reply to: Problems in the website
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,
YigitAugust 8, 2023 at 4:43 pm #1415834Topic: Z-Index does not work
in forum EnfoldMonika
ParticipantHey 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?August 8, 2023 at 2:18 pm #1415821In reply to: How to remove vertical line from iconlist?
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,
YigitAugust 8, 2023 at 12:57 pm #1415818In 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,
YigitAugust 8, 2023 at 12:40 pm #1415815In reply to: H1 headings on Archive pages for Accessbility
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,
MikeAugust 8, 2023 at 11:26 am #1415812Topic: Enfold and MemberPress “Courses”
in forum Enfoldwaveseven
ParticipantI’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
ColinAugust 8, 2023 at 10:57 am #1415810In 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,
YigitAugust 8, 2023 at 7:38 am #1415796In 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 -
This topic was modified 2 years, 8 months ago by
-
AuthorSearch Results
-
Search Results
-
Topic: Z-Index does not work
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?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
