Forum Replies Created

Viewing 30 posts - 18,511 through 18,540 (of 34,221 total)
  • Author
    Posts
  • in reply to: Set the video preview size of the thumbnail #1153365

    Hey Alexander,
    Sorry for the late reply, please link to the page so we can help adjust.

    Best regards,
    Mike

    in reply to: ADD MAPBOX INSTEAD OF GOOGLE MAP – MUCH NICER STYLE #1153364

    Hi,
    I took a look at your mapbox code, but unfortunately, there were too many errors in the javascript, and after trying to repair them the pulsing didn’t work. The first mapbox code works correctly in a code block element so if you get the correct code from mapbox
    and replace everything after mapboxgl.accessToken it should work, if not perhaps mapbox can assist with debugging their code.

    Best regards,
    Mike

    in reply to: Placeholder for a Language Switcher #1153360

    Hey João,
    Sorry for the late reply, we do not have a placeholder for a Language Switcher, but if you are using WPML, Enfold will display a Language Switcher.

    Best regards,
    Mike

    in reply to: Color Picker changes value #1153359

    Hi,
    It’s working correctly for me:
    2019-11-02-150853
    Please ensure you are using the latest version of Enfold and try disabling your plugins and clear any minified js.
    If this doesn’t help, please include an admin login in the private content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: grid row gradient color over multiple sections #1153353

    Hi,
    Glad Guenni007 could help, Thank you Guenni007 and thanks for using Enfold.

    Best regards,
    Mike

    in reply to: columns on Ipad portrait not centered #1153351

    Hey Stefan,
    Sorry for the late reply and thanks for the screenshots and link.
    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: 989px) and (min-width: 768px) {
        .responsive #top.home #wrap_all #main .container {
            width: 75%;
            max-width: 75%;
            margin: 0 auto;
            padding-left: 0;
            padding-right: 0;
            float: none
        }
    
        .responsive #top.home #main .container .av-content-small,.responsive #top.home #wrap_all #main .flex_column,.responsive #top.home #wrap_all #main .av-flex-cells .no_margin {
            margin: 0;
            margin-bottom: 20px;
            width: 100%
        }
    
    
       .responsive #top.home #wrap_all #main .flex_column:empty {
            margin: 0
        }
    }

    After applying the css, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Mobile main menu link issues #1153348

    Hey FeedXL2019,
    Sorry for the late reply and thanks for the well explanation and screenshots, the difference between the two menus is the setting at Enfold Theme Options > Main Menu > Burger/Mobile Menu > Menu Icon Submenu items which was set to Display submenu items on click but you wanted Always display submenu items
    2019-11-02-134235
    I have made this change for you, please clear your browser cache and check.
    Now the reason it was different between your parent theme and child theme is that somewhere down the line the default setting was changed in the parent theme settings, probably an accident or the mouse scroll wheel was used while other changes were made and it was not noticed when the theme settings were saved.
    Please note that the parent theme and child theme store their theme settings independently.

    Best regards,
    Mike

    in reply to: Removing attribute title from woocommerce product #1153343

    Hi,
    Sorry for the late reply, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    form.variations_form.cart td.label {
    	display: none !important;
    }
    form.variations_form.cart .single_variation_wrap {
    	margin-left: 0 !important; 
    }

    After applying the css, Please clear your browser cache and check.
    2019-11-02-133527

    Best regards,
    Mike

    in reply to: Masonry Rollover Text #1153339

    Hi,
    Sorry for the late reply, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function remove_custom_tooltip(){
      ?>
        <script>
        jQuery(window).load(function(){
            jQuery('.av-masonry-entry').removeAttr('title');
          });
        </script>
      <?php
      }
    add_action('wp_footer', 'remove_custom_tooltip');

    Best regards,
    Mike

    in reply to: Browsersupport #1153338

    Hey Franz,
    Sorry for the late reply, our list of browser support is on Theme Forest, but if you are going to use a list of browsers in a contract I recommend specifying the term “latest version” and not a version number and I would not list IE only Edge. I also recommend including wording for known browser bugs because we can do little to correct them.

    Best regards,
    Mike

    in reply to: Photos Above Text on Mobile #1153333

    Hi,
    Sorry for the late reply, this can be achieved with some css like this:

    @media only screen and (max-width: 767px) { 
      #top.page-id-2927 .post-entry-2927 .entry-content-wrapper {
      display: flex !important; 
      flex-wrap: wrap !important; 
      }
      #top.page-id-2927 .post-entry-2927 .flex_column.first.avia-builder-el-9 {
          order: 2 !important; 
      }
      #top.page-id-2927 .post-entry-2927 .flex_column.avia-builder-el-12 {
          order: 1 !important; 
      }
        #top.page-id-2927 .post-entry-2927 .flex_column.first.avia-builder-el-22 {
          order: 4 !important; 
      }
        #top.page-id-2927 .post-entry-2927 .flex_column.avia-builder-el-26 {
          order: 3 !important; 
      }
      }

    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field, but I notice the buttons also change their order, so to correct please put the pair of columns that make the right sided images into a color section so we can target them better. So you will then have two color sections each with two columns.

    Best regards,
    Mike

    in reply to: Video Volume control bug #1153285

    Hi,
    Sorry for the late reply, when I test the fullscreen slider with a self hosted video it auto plays with or without “Mute Video Player” checked. But I did see that trying to change the volume caused the control to hide, for this check that the performance setting “Self hosted videos and audio features (WP-Mediaelement scripts)” is set to “Always load media features (= WP default behaviour)” and that “Load jQuery in your footer” setting is off and that your caching plugin, Autoptimize plugin, Jetpack plugin, etc is not loading your jQuery in your footer. Also temporarily disable “Javascript file merging and compression” and do a hard reload. Then try this css code in the WordPress > Customize > Additional CSS field:

    div.mejs-button.mejs-volume-button.mejs-unmute:hover > a {
    display: block !important;
    }

    Best regards,
    Mike

    in reply to: Burger menu not working for blog post pages on mobile? #1153256

    Hi,
    Ok, I have sorted it out, you see your blog posts menu is a copy of your full-width sub-menu that is injected via your child theme functions.php, after carefully comparing the code I found it was missing the class “av-switch-768”. It is now working as expected.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Hover and clickable area in Gallery not correct #1153219

    Hi,
    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,
    Mike

    in reply to: Hover and clickable area in Gallery not correct #1153168

    Hey Bernd,
    I took a look at your gallery and I see what you mean, but I also note that if you hover over the very edge of the image anywhere it also works correctly, coupled with looking at the source code of the elements and not finding any other div’s for the element, I suspect a plugin conflict. Please try disabling your plugins and clearing your browser cache to see if that helps. I didn’t want to try this without your permission.

    Best regards,
    Mike

    in reply to: List of all blog authors #1153167

    Hey hugovandoor,
    I believe that a plugin would work best in this situation, I found Authors List it has a lot of options, please give it a try.
    I didn’t try the plugin, but I see that it uses shortcodes and I would recommend using these in a code block element if the other elements cause any issues with the plugin.
    I did find DIY options but they don’t offer the same options.

    Best regards,
    Mike

    Hi,
    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,
    Mike

    in reply to: Header widget issue #1153155

    Hi,
    True, it is not exactly the same because the site you are trying to model is using the bootstrap framework and a different icon set. To get an exact match is going to take quite a bit more customization than what our scope covers here.
    You could hire a freelancer and they could build it out for you in a few hours.

    Best regards,
    Mike

    in reply to: Header widget issue #1152996

    Hi,
    Sorry, this looks inline to me:
    2019-11-01-064954

    Best regards,
    Mike

    in reply to: Logo doesn't appear with Lazyload WPRocket #1152994

    Hi,
    Glad to hear it is sorted out now, thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Translation Cookietext English > German! Urgent! #1152989

    Hi,
    Glad to help, thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Header widget issue #1152987

    Hi,
    When I look at your example site the phone and mail icons are next to the text links, so to achieve this I changed your custom html widget

    <ul class="contact1"><li class="phone"><span class="in1"><a href="tel://1-555-555-5555">[av_font_icon icon='ue854' font='entypo-fontello' size='20px'][/av_font_icon]1-555-555-5555</a></span></li>   <li class="mail"><span class="in1"><a href="mailto: (Email address hidden if logged out) ">[av_font_icon icon='ue805' font='entypo-fontello' size='20px'][/av_font_icon] (Email address hidden if logged out) </a> <a href="#">Free Consultation</a></span></li></ul>

    and added this css:

    .in1 {display: inline-block !important; }
    .contact1 ul,.contact2 ul {
    	list-style: none!important; 
    	list-style-type: none!important;
    	vertical-align: bottom !important;
    }
    ul.contact1 li { 
    	display: inline!important;
    	vertical-align: bottom !important; 
    }
    .phone a,.mail a {
    	font-size: 20px;
    	line-height: 20px;
    }

    Please clear your browser cache and check, and feel free to adjust to suit.

    Best regards,
    Mike

    in reply to: Curve on Boxes #1152961

    Hi,
    Glad Jordan could help, thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Mobile burger menu #1152960

    Hi,
    Sorry for the late reply, Try removing the other code and adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    jQuery(window).load(function(){
      jQuery( '#header_meta' ).each(function() {
      jQuery( this ).find( '.social_bookmarks_facebook' ).appendTo( "#av-burger-menu-ul" );
      });
      });
      </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    then add code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 479px){
    .responsive #top #wrap_all #header .social_bookmarks,.responsive #top #wrap_all #header .phone-info  {
        display: block !important;
    }
    }

    Best regards,
    Mike

    in reply to: Burger menu not working for blog post pages on mobile? #1152689

    Hi,
    Sorry for the late reply, I see that your pages has a different menu style than your posts, but I don’t recall how we did that, even after reviewing your custom code and I’m a little weary of taking everything apart.
    Another option would be to add the brown background color to the menu that is transparent right now?

    Best regards,
    Mike

    in reply to: Header widget issue #1152675

    Hi,
    Sorry for the late reply, and thanks for the login, but it looks like you have already sorted out the widget area so it is inline with the logo. Is this resolved now?

    Best regards,
    Mike

    in reply to: Translation Cookietext English > German! Urgent! #1152656

    Hi,

    @eee_lala
    the translations have been updated quite a lot in the past week from generous users in this thread and this post has the latest German files these will be in the next update but it seems every few days the German files are being improved by the users so I recommend following that thread.

    Best regards,
    Mike

    in reply to: How to enlight the selected tab of a sub-menu #1152652

    Hi,
    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,
    Mike

    in reply to: Customized Portfolio Grid Layout (or maybe a post slider?) #1152650

    Hi,
    Glad that this helped, you will want to create a template for your new CPT and add it to your child theme, you can copy the current single.php template which is for single posts or page.php, for pages. I recommend checking out some videos on YouTube.
    From looking at your wireframe I believe that your CPT would work well as a shortcode, allowing you to place it in a specific section on your page. Besides checking YouTube, this article may also help.

    Best regards,
    Mike

    in reply to: Help with update #1152640

    Hi,
    Glad to hear you have it sorted out now. Thanks for using Enfold.

    Best regards,
    Mike

Viewing 30 posts - 18,511 through 18,540 (of 34,221 total)