Forum Replies Created
-
AuthorPosts
-
Hey Kornelia,
You can change the burger menu icon with this css, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.av-hamburger::before { content: url(https://png.icons8.com/settings/ios7/25); display: block; padding-top: 5px; } .av-hamburger-inner {display:none!important;}Note that I’m using an image on icons8.com but you can upload an image to your site and then change the url.
Best regards,
MikeHey Maureen,
I see that you are using youtube for the video, so I was going to suggest adding a button to the end of the video there, but I’m not sure that it will still work as a background video.
I would recommend adding a button full time below the video, such as “Learn More”
The video is not going to fire a “done” trigger to start the load of a button on the page.Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
I tested this out on my localhost and found that if you create a widget area with this function in your functions.php you will get a widget under your menu:add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { dynamic_sidebar( 'header' ); }Besure to add a custom widget called “header” in your widgets.
Then if you add this css it will be hidden:.inner-container > #text-6 { display: none !important; }Then if you add this javascript the widget will be added to your mobile menu on click, it can not be on “page load” because the menu doesn’t exist until “click”:
function widget_burger_menu(){ ?> <script> (function($){ $(window).click(function(){ $( "#text-6" ).appendTo( "#av-burger-menu-ul" ); }); })(jQuery); </script> <?php } add_action('wp_footer', 'widget_burger_menu');Please note my widget had the ID of #text-6
your will be different, so just match the ID of the widget.
Then clear your browser cache and check.
Please let us know if you want a hand with this.Best regards,
MikeHi,
I took a look at your socket social icons and added this css in your English side Quick CSS:@media only screen and (max-width: 425px) { #socket > .container { width: 100% !important; max-width: 100% !important; } #socket > .container > ul { margin-left: 0px !important; } }This works down to 333px, but not for the smallest mobile sixe 320px.
There are just too many icons and there is no padding to remove. You would need to make the icons smaller, but then there may be issues of clicking them.Best regards,
MikeHi,
Glad to hear, I assume we can close this now, but I like to ask first. Shall we close this then?Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
Thank you for the screenshots, it looks like your issue is with the heading fonts. According to your merged css all of the headings arefont-family: 'open sans','HelveticaNeue','Helvetica Neue','Helvetica-Neue',Helvetica,Arial,sans-serif;Which is probably set by your theme settings. What font did you want for h2 & h3?
Please try disable file merging for CSS and JS files under Enfold->Performance options, and Then clear your browser cache and any cache plugin, and check.
If this doesn’t help, please include an admin login in the private content area so we can be of more assistance.Best regards,
MikeHi,
Thanks for the screenshot. If Ismael is looking into this we should wait to hear back from him.Best regards,
MikeHi,
#4 I checked your css and you had a > instead of > this sometimes happens when copying the code from emails.
Please clear your browser cache and check.
I changed your social icons code so they all show now. But your last two are png which are black so they don’t show well before scroll. Please try converting them to fonts at the Fontello website.Best regards,
MikeHi,
I didn’t see your code in the child theme functions.php.
I added this code instead:function custom_script(){ ?> <script> (function ($) { function a() { $(window).scroll(function (e) { var $sticky = $('#nav_menu-10'); var position = ($sticky.css('position') == 'fixed'); if ($(this).scrollTop() > 100 && !position) { $sticky.css({ 'position': 'fixed', 'top': '150px', 'width': $sticky.innerWidth() }); $sticky.next().css('float', 'right'); $sticky.addClass('fixed_element_style'); } if ($(this).scrollTop() < 100 && position) { $sticky.css({ 'position': 'static', 'top': '0px', 'width': '' }); $sticky.next().css('float', 'left'); $sticky.removeClass('fixed_element_style'); } }); } a(); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_script');Seems to work good, Please clear your browser cache and check.
Best regards,
MikeApril 23, 2019 at 10:12 pm in reply to: Translation issue in social media heading in blog post #1093755Hi,
Thanks for the login, to correct the “Share this entry” to “Del denne oppføringen” I hope this is correct.
I added this code to the end of your child theme functions.php file.function modify_share_title(){ return "Del denne oppføringen"; } add_filter('avia_social_share_title', 'modify_share_title');As for your second question, I’m not sure were you want to move the social icons, at the very end of the page.
I’m not sure which is your “custom field”.Best regards,
MikeHi,
When I checked your team member popups were working, so I added the css in your Quick CSS add it seems to work fine.
Please see the video in Private Content area.
Please clear your browser cache and check again to see if it’s working for you now.Best regards,
MikeHi,
Yes I escalated it, and asked a second time, this may take a couple of days, Thank you for your patience.Best regards,
MikeHey Lukas,
Sorry for the late reply,
#1 please try this css:#menu-item-990 span.av-icon-char { line-height: 70px !important; }Please clear your browser cache and check.
#2 I adjusted your code so the mixcloud icon would show, I also added this css in the WordPress > Customize > Additional CSS field:#top #wrap_all .av-social-link-Mixcloud:hover a{ color:#fff; background-color:#9fae37; }Please adjust the color to suit.
#3 please try switching to the “classic editor” in your theme options, it’s on the same page as the “maintenance” option. Then try making your change again.
#4 Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@media only screen and (max-width: 545px) { #top.home .avia-slideshow-inner .avia-slide-wrap > img { left: -700px !important; } }Best regards,
MikeHi,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.page-id-545 a.open-popup-link:hover img { filter: grayscale(100%); -webkit-filter: grayscale(100%); } #top.page-id-545 .image-overlay.overlay-type-extern .image-overlay-inside:before { content: '' !important; background-color: transparent !important; } .avia_transform #top.page-id-545 #main a:hover .image-overlay { opacity: 0 !important; }Please clear your browser cache and check.
Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
Perhaps a good solution would be to also use a full-screen slider for mobile devices only. You can choose which slider to show in the screen options tab of the slider.Best regards,
MikeHi,
I took a look at your site and the version of Enfold was 3.2.3, isn’t this the same site I updated for you a while back?
Well I updated it for you and the site now works.
I’m not sure about the extra files, you could download them and then delete them off the server. They are not WordPress files.
But you do need the .htaccess file there, and the folder wp/Best regards,
MikeApril 23, 2019 at 2:09 am in reply to: av-share-link av-social-link-Whatsapp – Background Image #1093464Hi,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.av-share-box li.av-share-link.av-social-link-Whatsapp { background-image: url(https://www.radiocabiuna.com.br/wp-content/uploads/2019/04/whats-share.jpg); } .av-share-box li.av-share-link.av-social-link-Whatsapp a:before { color: transparent !important; }I let the image repeat because it not the correct dimensions to full the box as one.
Best regards,
MikeHi,
You should use a child theme so you won’t loose the code on the next update.
There are some plugins such as My Custom Functions that will save your code.Best regards,
MikeHi,
That’s odd, I took another look and added it back in and made a video of what I get.
Please watch the video and see if you get the same results.Best regards,
MikeHi,
You can add screenshots by uploading your images to a service such as postimages.org and pasting the html code given in your post.Best regards,
MikeApril 23, 2019 at 1:29 am in reply to: "neuestesn Beiträge" im Footer überschneiden sich + Bilder unterschiedlich groß #1093452Hi,
Your css checks out fine, both h3’s are needed one is: h3.slide-entry-title a and the other is h3.entry-title a
I took another look at your page, at different sizes but I don’t see anything that could cause a drop in traffic.Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
Oh, I think that has to do with the tab section loading last and the page making room for the section.Best regards,
Mike -
AuthorPosts
