Forum Replies Created
-
AuthorPosts
-
Hey Frans,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.avia_transform .av_slideshow_full .active-slide .avia-caption-title, .avia_transform .av_fullscreen .active-slide .avia-caption-title { visibility: visible; animation: caption-left 1s 1 cubic-bezier(0.1, 0.1, 0.1, 1); }the first number after the direction 1s is the duration of the animation, increasing this value will slow down thestart of the animation.
the next number 1 is the number of times the animation should repeat.
In cubic-bezier the first two numbers (0.1, 0.1) control the easing-in part of the animation, making it slower initially, I set these to the lowest numbers, from 0.9 to 0.1 so you should see a difference.
The last two numbers (0.1, 1) influence the easing-out part, ensuring a smooth finish.
If this is not slow enough for you then you should use a different animation like ease-in-out or ease-out.
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,
MikeHi,
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,
MikeHey northorie,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top #wrap_all .av-social-link-instagram:hover a, #top #wrap_all .av-social-link-instagram a:focus { color: #fff; background-color: purple; }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,
MikeDecember 27, 2023 at 5:00 pm in reply to: Problems with using the advanced layout for the event Calendar #1428910Hi,
Glad that the above worked for you, it looks like the breadcrumb background color is already #D95E32, so I assume that you have sorted this out.
To remomve “home” from your breadcrumbs try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.breadcrumb-trail > span:nth-child(2), .breadcrumb-trail > span:nth-child(3) { display: none !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,
MikeHey sophiasbiti,
To align your two icons side-by-side and center them in the page, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top.page-id-3264 .avia-builder-el-20 { text-align: center; } #top.page-id-3264 .avia-builder-el-20 .avia-image-container { display: inline; }the expected results:

To have the icons closer you will need to choose images with less empty space around them, here you can see the empty space:

Best regards,
MikeHi,
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,
MikeDecember 26, 2023 at 7:03 pm in reply to: Compatibility Issue with Kadence Gutenberg Blocks When Using Enfold Advanced Page Builder #1428892Hey Hector Moya,
Thanks for your question, but we don’t have any experience with the Kadence blocks, and I’m not sure how you would be able to use a block plugin within the Enfold Advanced Layout Builder since it doesn’t support “blocks”. Typically we don’t recommend using any other builders as they tend to conflict with the ALB, and the ALB can not be removed from Enfold.
I don’t see a practical way to create your pages with the Gutenberg editor and use the functionality of the Enfold elements.
I took a look at your page, specifically the header, but it seems to be fullwidth. Perhaps if your create a test page where you can demonstrate the issue, we can recommend so css, but I’m not sure if you will experience more conflicts as you create your site using the Kadence blocks, I would recommend using the Enfold elements to create your site.
That said if I had to use the Kadence blocks for a full-width hero header, I would try to use the Kadence blocks shortcode and inject the hero header using the ava_after_main_container hook, here is an example
If Kadence blocks doesn’t have a shortcode you could create one, or try some css like this to make the child element fullwidth when the parent is not:.hero_container { width: 100vw !important; position: relative !important; left: calc(-50vw + 50%) !important; }Please note that using the contact form which is not appropriate for support questions, please log in to the support forum and open a new thread if you need further assistance.
If you are unable to login to the support forum because you don’t have a activate support contract, please try going to your Theme Forest account and renew your support and then log in to the support forum and open a new thread.Best regards,
MikeHey Scott Barnes,
Thanks for your question, you can import our Modern Demo, and then modified the content to match your needs.
This is our documentation for importing the demos.
Please note that the webhost OVH blocks our IP address for importing the demo, often users need to try importing a few times for it to work. Hopefully you are using a different webhost as OVH will not correct this issue.Best regards,
MikeHey Anouk,
Thanks for the link to your site, I see that you have a plugin called “WordPress Reset” did you use this plugin to “reset” your site? If you did there is no undo feature.
Try asking your webhost to restore the last full backup to get your site back, typically webhosts will create a full backup with a database backup once a month.Best regards,
MikeHi,
Glad Ismael 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,
MikeHi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:h2.av-milestone-date { vertical-align: middle; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
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,
MikeDecember 24, 2023 at 4:33 pm in reply to: Enfold Theme Problem: non-JS module / ERR_CONNECTION_CLOSED #1428852Hi,
Thank you for your patience, I tried editing your news & event pages in Windows with Chrome with a lan connection and didn’t experience any time outs, I also undid my changes.
Are you using a wifi connection? I’m not sure how to advise on this since I can’t reproduce it.
If you like I can ask the rest of the team to also try after the holidays to see if any of them can reproduce it.
I hope that you have a Merry Christmas and a Happy New Year.Best regards,
MikeDecember 24, 2023 at 3:34 pm in reply to: Problems with using the advanced layout for the event Calendar #1428851Hey tclaereveld,
Thanks for your patience and the link to your site, I changed your code to this and enabled the Classic Editor in the theme settings at:
Enfold Theme Options ▸ Select Your Editor ▸ Use WP Classic Editor and now it seems to be working.add_filter('avf_builder_boxes', 'add_builder_to_posttype'); function add_builder_to_posttype($metabox) { foreach($metabox as &$meta) { if($meta['id'] == 'avia_builder' || $meta['id'] == 'layout') { $meta['page'][] = 'tribe_events'; } } return $metabox; }Best regards,
MikeDecember 24, 2023 at 2:55 pm in reply to: Some special needs: menue item, zoom/hover on image etc. #1428850Hey Katja,
Thank you for the link to your test site, it looks like your footer link has been added as a custom menu item with a full url, please try to use only the footer ID like this:

In my test on my site this solves the issue you are having.
For the portfolio section try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#portfoliobeschriftung .main_color .grid-content, #portfoliobeschriftung .main_color .grid-content * { background-color: #e2001a; color: #fff; }Your email link and phone number in the header has two line break tags (BR), try to remove these and then add this css:
.phone-info .infos a { display: inline; } .phone-info .infos a .avia-icon-pos-left { float: none; display: inline; }If you can’t remove the line break tags, then try this css:
.phone-info .infos br { display: none; } .phone-info .infos a { display: inline; } .phone-info .infos a .avia-icon-pos-left { float: none; display: inline; }To have the team membert images increase in size on hover, try this css:
#team .avia-team-member img { animation: growout 2s; animation-fill-mode: forwards; } #team .avia-team-member:hover img { animation: growin 2s; animation-fill-mode: forwards; } @keyframes growin { from {transform: scale(1)} to {transform: scale(1.2)} } @keyframes growout { from {transform: scale(1.2)} to {transform: scale(1)} }Best regards,
MikeDecember 24, 2023 at 2:18 pm in reply to: Menu Dropdown Spacing & Not Able to Select Dropdown #1428849Hi,
Thanks for your patience, when I review your submenu drop downs the padding seems to be the same for all items, 8px, so I’m not quite sure what you wish to achieve now.
Below I included screenshots of the menus for your links, perhaps you could explain further and provide a mockup of what you wish to achieveBest regards,
MikeHi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.home #main > .container_wrap_first > .container > .content { padding-bottom: 0; }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.
It looks like there will still be a little space between the slider image and the text block, this is due to some padding or margin in your LayerSlider slides, so if you want to remove or reduce this please check your LayerSlider settings.Best regards,
MikeDecember 23, 2023 at 6:08 pm in reply to: Display of active anchor link menu items doesn’t work anymore #1428823Hi,
For your information after your holiday break, this is the example of the menu items adding the current-menu-item class when they are clicked, this is a gif so you may need to click the image for the gif to play and wait a few seconds:

this is your page while I click on the menu items, see how the classes flash like in the gif above but the class current-menu-item is not added:

I hope this explains what I meant better.
Happy Holidays and Merry Christmas.Best regards,
MikeHi,
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,
MikeHi,
Please try this link: Special Character Translation pluginBest regards,
MikeHi,
For the Special Character Translation plugin to work you will need to change the to ###lt### and ###gt###
in your pages, if you have 255 pages, I recommend creating a staging site and try the Better Search Replace, and try to target only the posts, but don’t try this on your live site until after you have tested and have a full backup because replacing special characters in the wrong place in the database could break your site.
Try watching some videos on YouTube to see the best way to use the plugin: https://www.youtube.com/results?search_query=Better+Search+ReplaceBest regards,
MikeHi,
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. Merry ChristmasBest regards,
MikeHi,
Correct for those token settings you will need to use the Envato plugin.Best regards,
MikeHi,
Thanks for the feedback, glad to hear that you have found that adding a space after the special characters helps, I believe that the WordPress text element has a feature that removes duplicate spaces, so perhaps when you edit the page for something else the duplicate spaces are removed the page breaks again.
Perhaps the best solution for your scientific pages is to use the Special Character Translation plugin for these characters, please see our documentation: Using special charactersBest regards,
MikeHi,
Glad this worked for you, and it should work for future updates. Unless there is anything else we can assist with on this issue, shall we close this thread then?Best regards,
MikeHey nebuddlho,
Is this for the Post Views Plugin? You can edit the class-avia-combo.php file but you will need to do so after each update as this file can’t be added to the child theme.
I’m not sure if this specific code will work and this plugin looks like a paid plugin so I’m not able to test. We are limited to our support for third party plugins, if the code doesn’t work for you try asking the plugin author, most paid plugins offer some support.Best regards,
MikeHi,
The Envato plugin says:Please ensure only the following permissions are enabled:
1. View and search Envato sites
2. Download your purchased items
3. List purchases you’ve madeso please try this.
Best regards,
MikeHi,
It says:Please ensure only the following permissions are enabled:
1. View and search Envato sites
2. Download your purchased items
3. List purchases you’ve madePlease try this.
Best regards,
MikeHi,
When I check your site it says: Updates: enabled – token has changed and not verified, so this points to it waiting for Envato and not a theme issue. You may need to wait for your site to get the check from Envato, but note that Envato limits the daily checks so you may need to wait at least 24 hours, also note that the limit applies to all tokens on your account, so if you have multiple tokens your sites will update a few at a time.
Envato may be also receiving a lot of update requests across the board. You could try the plugin, I don’t know if the same limits apply to the plugin, or you could manually update if you need to right away:
To update manually 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,
Mike -
AuthorPosts

