Forum Replies Created
-
AuthorPosts
-
Hi,
Thanks for the feedback, it seems that your solution is working well, I would recommend continuing to use this.
Unless there is an error that I’m not seeing right off?Best regards,
MikeHi,
Sorry for the late reply, thanks for resetting the css for the menu, so to move the sub-menu to the left on hover for your 3 column sub-menu, please try this css:.html_header_top #top .av_menu_left .main_menu .menu li#menu-item-19330 ul li#menu-item-19831 ul { left: -630px !important; }The 630px is based on the width of your 3 column sub-menu, so to target the other two sub-menu items we will need to create a new rule, if you wish, but first please test this.
Please see the screenshot in Private Content area.Best regards,
MikeHi,
Sorry for the late reply, I put the previous settings back and then I added this code to the end of your functions.php file:add_filter('avia_sidebar_menu_args', 'avia_sort_sidebar_pages',10, 2); function avia_sort_sidebar_pages($args, $post) { $args['sort_column'] = 'menu_order, post_title'; return $args; }This will allow you to set the menu order in the “Quick Edit” order option:

I set the order for the “About Us” pages with “about us” as “0” and “FAQ” as “8”
Please review and then try setting your order for the other pages.Best regards,
MikeHi,
I added this css, Please clear your browser cache and check.#av_product_description { background-image: url(https://your-site.de/wp-content/uploads/2019/04/Banner-Ts-beauty-shop.png) !important; } #av_product_description .av-parallax.active-parallax { opacity: 0 !important; }Best regards,
MikeApril 30, 2019 at 2:51 am in reply to: Burger menu and menu responsiveness not working anymore #1095566April 30, 2019 at 2:46 am in reply to: Trying to Add JS Particles Background via Enfold theme #1095564Hi,
Glad to help, I assume we can close this now, but I like to ask first. Shall we close this then?Best regards,
MikeHi,
Do you mean the pop up space in “Anwälte”?
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.awsm-details .mCustomScrollBox { height: 600px !important; max-height: 600px !important; }Best regards,
MikeHi,
It sounds like you tried to overwrite the theme directory with the new version, which will certainly crash the site.
Can you include admin login in the Private Content area, I don’t see your site linked above.Best regards,
MikeHey Christina,
Sorry for the late reply, this looks like an error we had with this version, it would “request” too many times so you couldn’t update.
Please include an admin login & FTP access in the Private Content area and we will assist update your theme.Best regards,
MikeHi,
Sorry for the late reply, it looks like you will want a container width of 72%
Please see the screenshot in Private Content area.Best regards,
MikeApril 29, 2019 at 12:24 am in reply to: Burger menu and menu responsiveness not working anymore #1095112Hey kjwaggz,
Sorry for the late reply, when I look at your site the menu is not overlaping the logo, and the burger menu works. Were you able to already resolve this?
or perhaps clear your browser cache and check again?Best regards,
MikeHey Joe Taddeo,
Your site looks really good, but you can get even more feedback from the community here.Best regards,
MikeApril 29, 2019 at 12:00 am in reply to: All new Slider do not work with Woocommerce Version 3.6.2 #1095108Hey Michael,
Sorry for the late reply, I was not able to reproduce this, Please include an admin login in the Private Content area, so we can be of more assistance.Best regards,
MikeHey amepro,
Sorry for the late reply, I’m not quite sure that I understand correctly, I tried to recreate the issue but I wasn’t sure on this part “should follow page and disappear when entering a new section” this sounds like you want the logo to scroll off the page, but slowly?
Do you have a page we can see set up?Best regards,
MikeHey sugadaddy,
Thanks for the login, it looks like your background image has reached the max-height of the container, but due to the ratio it doesn’t full the width, increasing the height a little corrects it, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.home .post-entry-2 div .flex_column { height: 500px !important; }Best regards,
MikeHey sugadaddy,
Sorry for the late reply, thank you for the login, I added this function to your functions.php to change the “Read More” links.function custom_more_script(){ ?> <script> (function($){ $(document).ready(function(){ $(".more-link").text("Learn More"); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_more_script');Please adjust the text in the code “Learn More” to what you wish.
Best regards,
MikeHi,
It seems that the image overlay is the same in both links now, has this been resolved?Best regards,
MikeHey mritkuma99,
Sorry for the late reply, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.avia-content-slider-inner .slide-entry a { background-color: transparent !important; }Best regards,
MikeHi,
Thank you, it was the dashboard link that I was looking for. I see that you are using Enfold v4.4.1, I would still recommend updating.
I was able to put together a solution with this function:function header_script(){ ?> <script> (function ($) { $(window).scroll(function() { var width = $(window).width(), height = $(window).height(); var scroll = $(window).scrollTop(); if (scroll >= 10 && width >= 990) { $(".html_header_top.html_header_sticky #header").css({ 'top': '0px' }); } else { $(".html_header_top.html_header_sticky #header").css({ 'top': '32px' }); } }); })(jQuery); </script> <?php } add_action('wp_footer', 'header_script');When I test this outsite of your site on your site it works well, but when I try to add it to your functions.php it doesn’t work. Please try adding it to your functions.php file and then clear your hosting cache, I don’t see a site cache to clear.
Best regards,
MikeApril 28, 2019 at 7:02 pm in reply to: Pseudo ::before/::after elements not being added in HTML #1095072Hey sugadaddy,
Sorry for the late reply, thank you for the login, I took a look at your elements and how your css is only working on the first element. I found that your css is too specific and only points to the first one. Which may be good because you will want different :before & :after colors for the different sections. To target the lower section please try this css:#top #av_section_5 .headline > h2 > span::before { right: 100% !important; width: 300px !important; border-style: solid !important; background-color: #fff !important; border-bottom-width: 2px !important; content: "" !important; display: block !important; position: absolute !important; top: 50% !important; border-width: 0 !important; } #top #av_section_5 .headline > h2 > span::after { left: 100% !important; width: 300px !important; border-style: solid !important; background-color: #fff !important; border-bottom-width: 2px !important; content: "" !important; display: block !important; position: absolute !important; top: 50% !important; border-width: 0 !important; }Best regards,
MikeHi,
Sorry for the late reply, I understand that the site is temporarily working for you now, but I also see that you are using Enfold v4.5.5, when you have a good time to test, please try updating to v4.5.6 there were many fixes included.Best regards,
MikeHi,
@amepro, Please try this solution or please include admin login in the Private Content area so we can be of more assistance.Best regards,
MikeHey Ken Davison,
Sorry for the late reply, I have taken a look at your site and see that it is quite old, Enfold Version: 3.2.3, and you are using WordPress v5.1.1
It sounds like the old owner doesn’t have access to the Theme Forest account to update the theme, nor do you. I would recommend purchasing a license here which will allow you to update the theme and get up to a year of support for only a little more, look for the “Extend support to 12 months” check box, which is a great value.
You can then login to the support forum and we can assist with your updates and issues for the next year.
Thank you we look forward to assisting you.Best regards,
MikeHi,
Thanks for the link, when I try to login I get this error:Forbidden You don't have permission to access /wordpress_2/wp-admin/index.php on this server.Please check the permissions for this login.
Best regards,
MikeApril 28, 2019 at 5:29 pm in reply to: Update Failed: Download failed. A valid URL was not provided #1095054Hi,
Thanks for the hosting login, but I can’t login to the cPanel, I can see the user name but not the password.
Do you know it?
Is there another link that automatically logs you into the cPanel? I didn’t see it in the hosting panel.Best regards,
MikeHi,
Thanks for the login info, So to correct this we will first disable the auto sidebar nav, by going to
Enfold Theme Options > Sidebar Settings > Page Sidebar navigation and unchecking, and saving.
Now we will create a new menu for the sidebar, and add your pages.
Then we will add the “Navagation Menu” widget and select your new menu.
I have done this for you, Please clear your browser cache and check.Best regards,
MikeHi,
Please try this code instead in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.responsive #top.home .container { max-width: 1200px !important; } #top.home #av_section_1 > div.container { background-color: #97c83c !important; } #top.home #av_section_1 { background-color: #f8f8f8 !important; }Best regards,
MikeHi,
Thanks for the ftp login, I was able to correct the error message, but your video doesn’t play and I see any errors for it.
Your child theme has a lot of custom files in it, are they all currently needed? Please try removing all of the custom files and see if the error continues. Then you can include them one at a time until the error occurs, to find the issue.Best regards,
Mike -
AuthorPosts
