Forum Replies Created
-
AuthorPosts
-
Hey schweg33,
Try this CSS in your <strong style=’color:#000′>Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 1224px) { #top.home .avia-button.avia-size-small { min-width: 100%; } }
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 charles GUERRIER,
Typically each license includes six months of support in our support forum, unless at the time of purchase you selected to extend this to one year.
After this time you can go to your Theme Forest account and renew your support. If you have multiple licenses for multiple projects you can register your Purchase Code here and create an account for the licenses that still have available support time. Unfortunately we don’t have a way to register multiple purchase codes under the same support account, so just create a different account for each one. You can always go to your Theme Forest account and renew your support.Best regards,
MikeHi,
I would recommend copying the css stylesheets from your css directories and adding it to your child theme stylesheet, so it is all in one file, and then check.
I’m not sure about the javascript files, you would need to determine what they do first and if it is something that you need, there is a good chance that the javascript and other files are for customizations or to fix errors that might already be fixed.
I recommend testing your site behavior first and see if anything is different, not style but function, if everything works correctly then there will be no need to add the javascript and other files.
So far your comments have only been about style, so copying the css files should fix this.Best regards,
MikeMay 19, 2024 at 12:25 pm in reply to: Change dimensions of featured image in single blog post #1444512Hi,
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,
MikeHi,
I see it, before scroll none:
after scroll it shows:
if you had something different in mind, please upload a mockup demonstrating what you would like to see so we can understand betterBest regards,
MikeHi,
Try this filter insteadadd_filter( 'avf_post_nav_entries', 'avf_post_nav_entries_mod_reverse', 10, 3); function avf_post_nav_entries_mod_reverse($entries, $settings, $queried_entries) { $settings['same_category'] = true; $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); return $entries; }
Best regards,
MikeHey Sebastian,
If you have the shrinking header applied then you can add shadow to the header when the class header-scrolled is added.
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#header.av_minimal_header_shadow.header-scrolled { box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1); } #header.av_minimal_header_shadow { box-shadow: none; }
If this doesn’t work for you then we will need to see your page.
Best regards,
MikeMay 19, 2024 at 1:57 am in reply to: Sections on Page Disappearing After Saving + Can’t Get Rid of Menu Border Lines #1444432Hi,
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,
MikeMay 19, 2024 at 1:55 am in reply to: Video fallback image causing enormous performance issues on mobile devices. #1444431Hi,
I don’t know why the pagespeed scores are so different, but when I first tested your homepage this morning it was 78 and after my adjustments is was 89-94, I think that is pretty good.
So on your /counseling-austin-tx/ page with the video when I first tested it was 62, then I disabled your EWWW Image Optimizer plugin and it jumped to 82.
Please see the links below.Best regards,
MikeHi,
When I compare the two sites it looks like your original site has some custom css that your staging site doesn’t, try checking these places that may have some css that you didn’t copy over yet:
WordPress ▸ Appearance ▸ Editor ▸ parent theme ▸ custom.css stylesheet
WordPress ▸ Customize ▸ Additional CSS
otherwise disable Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression on both sites and then use the inspector on the elements in question and compare the css rules to see what is the difference, with the merging and compression off you can see the files that are giving the stylesBest regards,
MikeHey manurimini,
As I understand your question when you click a anchor link the page scrolls too far and goes under the sticky sub-menu, to change this you will need to adjust the offset.
The following script will change it but you may need to adjust the offset for your site, so in this example our header is 80px high on mobile and the sub-menu is 60px height, making 140px:
The height doesn’t change until 990px when the burger menu is replaced with text items, and then the header is 90px high on mobile and the sub-menu is 60px height, making 150px:
So add this code to the end of your child theme functions.php file in Appearance ▸ Editor or 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:
then add this code and save.function custom_change_offset() { ?> <script> (function($) { var width = $(window).width(); if ((width < 989)) { $('a[href*=#]:not([href=#])').click(function() { if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { var target = $(this.hash); target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); if (target.length) { $('html,body').animate({ scrollTop: target.offset().top - 140 //offset }, 1000); return false; } } }); //Executed on page load with URL containing an anchor tag. if($(location.href.split("#")[1])) { var target = $('#'+location.href.split("#")[1]); if (target.length) { $('html,body').animate({ scrollTop: target.offset().top - 140 //offset }, 1000); return false; } } } else if ((width > 990)) { $('a[href*=#]:not([href=#])').click(function() { if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { var target = $(this.hash); target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); if (target.length) { $('html,body').animate({ scrollTop: target.offset().top - 150 //offset }, 1000); return false; } } }); //Executed on page load with URL containing an anchor tag. if($(location.href.split("#")[1])) { var targett = $('#'+location.href.split("#")[1]); if (targett.length) { $('html,body').animate({ scrollTop: targett.offset().top - 150 //offset }, 1000); return false; } } } }(jQuery)); </script> <?php } add_action( 'wp_footer', 'custom_change_offset', 99 );
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Note that there is four places you may need to adjust two 140px & two 150px
Also note that you can add more space if you like, it doesn’t have to be exact.
In my example I added a red border around the sections to make it easy to see, on mobile it is like this:
and on tablet 1024px like this:
and desktop like this:
Please note that when testing by changing your browser widow size it is best to reload the page so the screen size can be recalculated, this won’t be an issue on real devices.Best regards,
MikeHi,
Thanks for the mockup image, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .menu-item-has-children > a > .avia-menu-text:after { content:"\e873"; font-family: 'entypo-fontello'; right: -10px; position: relative; }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
This is the expected results:
Best regards,
MikeHey Diana,
For #2 the selection menu items in “uppercase” due to this custom css, try to find the text-transform and remove:
if you can’t find it try adding this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top #main .avia_ajax_form .select { text-transform: none !important; }
For your first question, the background color is set by your browser, it is blue on my computer:
When I search stackoverflow.com I’m not able to find any working solutions, most people say that it is not possible, I tried for almost an hour but didn’t find one.Best regards,
MikeMay 18, 2024 at 10:09 pm in reply to: Change dimensions of featured image in single blog post #1444404Hi,
Your website link in the copyright (Website Design by) is broken, try clicking it.
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:
then add Guenni007’s code and save.Best regards,
MikeHey PutmakerAG,
This is created by the browser from the title attribute, the theme doesn’t have an option to block this browser behavior, try this solution ▸ https://kriesi.at/support/reply/1345583/
If you need further assistance please log in to the support forum and open a new thread 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.
Please note that using the contact form is not appropriate for support questions.Best regards,
MikeHey Marion,
Thanks for your comment, but we are not able to reproduce this, please see the test page the I created below.
When you add your links ensure to add https:// you do not need to add target as it will open in a new tab by default
If you need further assistance please log in to the support forum and open a new thread 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.
Please note that using the contact form is not appropriate for support questions.Best regards,
MikeHey JoeSurf,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width:767px){ .responsive .logo img, .responsive .logo svg { height: 282px !important; } }
Then clear your browser cache and any cache plugin, and check.
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,
MikeHi,
Unfortunately the line is a pseudo-element so it’s state is related to the parent element, if you want to remove the hover effect try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .av_header_transparency .main_menu ul:first-child > li > a:hover { opacity: 1 !important; }
Best regards,
MikeHey reqonsult,
Please see our documentation for our mega menu, if this link doesn’t scroll to the Add Images to mega menu section automatically, please scroll down to it.Best regards,
MikeHey tcampaner,
Thank you for your patience, in the blog element please choose Title and Excerpt + Read More Link to show the Read More Link:
then in the theme options Enfold Theme Options ▸ Blog Layout ▸ Blog Styling choose Default (Business) to have the date & comments under the title and align everything to the left and have the title with normal letters instead of uppercase
this will also change the blog post page to the way you have asked.Best regards,
MikeHi,
Thank you for your patience, I have checked your page with Firefox, and I saw the error after about 14 clicks, but I was not able to reproduce this in any other browser and I found no browser console errors. I believe this may be an error with in the browser, as if it was a theme error it would show in all browsers. I tried to find a work around to stop this such as preventing page scroll on the clicking of the element, but this didn’t work as it seems the scroll behavior is an internal function that occurs even if page scrolling is disabled.Best regards,
MikeMay 18, 2024 at 4:39 pm in reply to: Video fallback image causing enormous performance issues on mobile devices. #1444348Hi,
I noticed that many js & font files are served from a CDN “exactdn.com” which is from the ewww plugin and I disabled by unchecking the option at Essential ▸ Include All Resources
Then I use the Fast Velocity Minify ▸ JS Settings ▸ Render Blocking JS files option adding this:/wp-includes/js/ /wp-content/uploads/dynamic_avia/
and achieved a huge gain with a score of 94 on mobile from 78
I ran the test a second time and got a score of 89, which is still much better, so I expect that you will see high 80s to low 90s as an average score:
Best regards,
MikeMay 18, 2024 at 3:09 pm in reply to: Accessibility: Compliance of forms and tab elements in the Enfold theme #1444332Hi,
Glad to hear that the original issue is resolved, I posted your new issue to the Dev Team and when I hear back from them, I will reply. Thank you for your patience.Best regards,
MikeMay 18, 2024 at 2:39 pm in reply to: Google Maps error: Maps were disabled by the visitor on this site. Click to open #1444330Hi,
When I disable your WPRocket plugin completely and then check your /contact/ in a new incognito browser the map shows correctly like your /contact-map-test/ page, so it seems to be one oo the WPRocket options. I’m not familiar with all of the WPRocket setting, so try disable the setting one at a time and see if you can isolate the setting. Or perhaps try these exclude settings from the WP Rocket documentation.
If this is related to the JotForm plugin and how WPRocket is handling it, you may need to find the exclude settings for the JotForm plugin.Best regards,
MikeHi,
Thank you for your patience, I found that your child theme style.css file contained this custom css that caused the animation, I removed it for you:.home .active-slide .avia-slide-wrap { -webkit-animation: scale-in-center 2s ease-out both; animation: scale-in-center 2s ease-out both; } @-webkit-keyframes scale-in-center { 0% { -webkit-transform: scale(0); transform: scale(0); opacity: 1; } 100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; } } @keyframes scale-in-center { 0% { -webkit-transform: scale(0); transform: scale(0); opacity: 1; } 100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; } }
please clear your browser cache and check.
Best regards,
MikeHi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field to keep the “View all reseults” the same color on hover, or adjust to suit:.av_ajax_search_entry.av_ajax_search_entry_view_all:hover { color: var(--enfold-header-color-primary); }
I don’t see any gap created by the ajax search results widget please upload a screenshot demonstrating the error so we can understand better.
Best regards,
MikeHi,
Thank you for your patience, I made some adjustments, this is the css now:@media only screen and (max-width: 989px) { #header_main > .widget { display: none; } } @media only screen and (min-width: 990px) and (max-width: 1439px) { .av-logo-container .inner-container .widget #searchform { width: 100%; min-width: 500px; } .av-logo-container .inner-container .widget { display: flex; order: 3; flex-basis: 65%; right: -15%; top: -5%; } } @media only screen and (min-width: 1440px) { .av-logo-container .inner-container .widget { display: flex; order: 3; flex-basis: 65%; right: 0; top: -5%; } .av-logo-container .inner-container .widget > search { width:100% } } @media only screen and (min-width: 990px) { .av-logo-container .inner-container { display: flex; flex-direction: row-reverse; } #header_main > .widget { display: none; } .av-logo-container .inner-container .widget #searchform .ajax_search_response { background-color: #fff; z-index: 3; } .header_color #search-6 input[type=submit] { background-color: #da291c; color: #fff; } .header_color #search-6 input[type=submit]:hover { background-color: #da291c; color: #fff; } #top #header.header_color .widget input[type=text] { border-color: ebebeb; border-radius: 3px; } #top #header.header_color .widget #searchsubmit { border-radius: 0 3px 3px 0; } #top #header.header_color .widget #searchform #searchsubmit { font-size: 16px; } .av-logo-container .inner-container #menu-item-shop { display: flex; order: 2; } }
please clear your browser cache and check.
Best regards,
MikeHi,
If font weight doesn’t change it, it could be that your custom font is set to a specific weight, all fonts don’t support all of the weights.
In some cases the font family will have a “light” variation and a “bold” variation, try checking your font and perhaps also install the “bold” variation.Best regards,
Mike -
AuthorPosts