Forum Replies Created

Viewing 30 posts - 11,071 through 11,100 (of 34,910 total)
  • Author
    Posts
  • in reply to: Short Separator Not Showing on Menu #1359949

    Hey GWS,
    Thank you for the link to your site, but it is in maintenance mode so we can not see your menu. I have tested the Enfold Theme Options ▸ Main Menu ▸ Separator Between Menu Items ▸ Small Separator on my demo site and found it to be working, the css you posted also worked to change the color, so please include an admin login to your site in the Private Content area so we can investigate.

    Best regards,
    Mike

    in reply to: Column space mobile version #1359945

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

    in reply to: PAGESPEED 2022 #1359938

    Hi,
    Thanks for sharing your tutorial.

    Best regards,
    Mike

    in reply to: image over image effect options #1359928

    Hey hostworks,
    Thanks for your question, the elements that you have linked to are using css for the mouse-over effect.
    The box shadow around the element uses this css:

    .apx-card:hover .apx-card-inner {
        -webkit-box-shadow: 0 15px 34px #a9afac;
        box-shadow: 0 15px 34px #a9afac;
    }

    the background color of the icon uses this css:

    .apx-card:hover .apx-card-img-inner {
        background: #5ba07c;
        color: #fff;
    }

    and the lines of the icon uses the invert filter

    .apx-card:hover img {
        -webkit-filter: brightness(0) invert(1);
        filter: brightness(0) invert(1);
    }

    If you wanted to recreate this with the Icon Box element, you could add the custom class apx-card to it:
    2022-07-30_001.jpg
    then add this css:

    .apx-card:hover .iconbox_icon {
        background-color: #fff;
        color: #000;
    }
    .apx-card:hover {
        -webkit-box-shadow: 0 15px 34px #a9afac;
        box-shadow: 0 15px 34px #a9afac;
    }

    for this result on mouse-over (the middle element)
    2022-07-30_002.jpg
    please give this a try and if you need further help please link to a test page that we can examine.

    Best regards,
    Mike

    in reply to: Hovering (Mouse Over) Captions #1359924

    Hi,
    Thanks for your question, yes you would place the code at the end of your functions.php.
    But I note that the site you linked to above doesn’t seem to be using a Child Theme, we would recommend that to follow the steps to install a child theme, otherwise this code that you add to the functions.php will be lost with each update.
    Please give this a try, and if you need further help please include an admin login in the Private Content area so we can assist.

    Best regards,
    Mike

    in reply to: Enfold Facebook Likebox Only Works on Google Chrome #1359918

    Hey vantagepointmg,
    Thanks for your question, your Facebook Likebox is being blocked by the browser, in the latest Safari update, Safari now blocks Facebook trackers by default, probably the same for iOS Firefox.
    To work around this you can create a fake Facebook Likebox with html or an image that is linked to Facebook.

    Best regards,
    Mike

    in reply to: Change Font Weight of Special Heading #1359913

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

    in reply to: Change Font Weight of Special Heading #1359872

    Hey cktanju,
    Thanks for your question, if you have used the Typography Settings to set the font-weight to 900 then you will need to add the H tag to your css to override this for the special heading element like this:

    #top #wrap_all .all_colors h3.av-special-heading-tag {
    	font-weight: 300;
    }

    note that this targets the h3 tag, so you will need to adjust to suit.
    If this is for one specific special heading element, I would also recommend adding a custom class to it and your css.
    After applying the css, please clear your browser cache and check.
    If you still have trouble, please link to your specific page so we can examine.

    Best regards,
    Mike

    Hi,
    Glad thinkjarvis could help, thank you thinkjarvis, and you found which plugin was causing this, 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,
    Mike

    in reply to: Accessibility for Visually Impaired #1359842

    Hi,
    Thank you for your patience, the aria-label is the attribute used for accessibility, typically screen readers will read the “title”, “alt”, or “aria-label” attributes:
    2022-07-29_001.jpg
    While we don’t have access to “Jaws” this chart of the Screen Reader Output seems to indicate that “Jaws” looks for the Anchor Text first and I note that on your original site the main menu links only have Anchor Text, with no “title”, “alt”, or “aria-label” attributes.
    The difference with our theme is that the Anchor Text is wrapped in a “span” and is not a direct Anchor Text.
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function unwrap_main_menu_text_for_jaws() { ?>
      <script>
    (function($){
      $('.avia-menu-text').contents().unwrap();
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'unwrap_main_menu_text_for_jaws');

    and check with your “Jaws” software.

    Best regards,
    Mike

    in reply to: Audio player not working on ios #1359837

    Hey trellyn,
    Thank you for the link to your site, please try disabling your caching plugin “siteground-optimizer” and disable Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression, and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and ensure that Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer is not enabled.
    If this doesn’t help then please leave these changes in place and include an admin login so we can investigate.

    Best regards,
    Mike

    in reply to: Blurry Header Images #1359770

    Hi,
    Please try adding [nolink] in Enfold Theme Options ▸ Footer ▸ Copyright
    Please review our documentation

    Best regards,
    Mike

    in reply to: Demodateien #1359744

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

    in reply to: Text links in tables #1359679

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

    in reply to: One widget title not white #1359621

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

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

    in reply to: Custom location breadcrumb #1359551

    Hi,
    To replace the breadcrumb “Home” with a house icon and make it white, please try this css:

    
    .breadcrumb-trail a.trail-begin:after {
    	content: "\e821";
    	font-family: entypo-fontello;
    	font-size: 16px;
    	color: #fff;
    }
    .breadcrumb-trail a.trail-begin {
    	font-size: 0 !important; 
    }
    

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

    Best regards,
    Mike

    in reply to: title under the layerslider #1359503

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

    Hi,
    Glad Nikko was 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,
    Mike

    in reply to: Color Section Video Autoplay #1359485

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

    in reply to: Large empty space on page load #1359483

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

    in reply to: Hidden Element Creating Whitespace #1359482

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

    in reply to: Hidden Element Creating Whitespace #1359425

    Hi,
    Thank you for the link to your site, the only padding or space that I see above your contact form is from the color section content class:

    .content {
        padding-top: 50px;
        padding-bottom: 50px;

    This is from the color section for every element added, please try adjusting this for this one element if you need further help please let us know.

    Best regards,
    Mike

    in reply to: How extract data from Contact Form DB for Enfold #1359421

    Hey Stefano,
    Thanks for your “question”?
    Are you referring to the plugin Contact Form DB for Enfold?
    This is not our plugin, so we don’t know, and the plugin author has not answered this on their plugin support page.

    Best regards,
    Mike

    in reply to: Color Section Video Autoplay #1359420

    Hey TippingPointSolutions,
    Thanks for your question, I assume that you mean only on mobile devices, because I have tested this on desktop Mac with Chrome, Safari, Firefox, and the background video in a color section autoplays without user interaction. My test page is listed below, please check. Perhaps your page has an added element that is causing the error, so please link to your test page so we can test on our devices.
    If this is about mobile devices we can not help, I’m certain you are familiar with iOS’s stance on the autoplay of videos on mobile devices and how with each update they are cracking down more. We need to follow the rules. You can try using a plugin, and in some cases the layerslider will work (for now), but I would recommend educating the client and pointing out that someday this will not work at all. Please note that I say this with respect.

    Best regards,
    Mike

    in reply to: Some Woocommerce styling questions #1359375

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

    Hi,
    Thanks for the feedback, I have asked team members with an iPhone to check and advise, I only have an Android. Thank you for your patience.

    Best regards,
    Mike

    in reply to: Some Woocommerce styling questions #1359366

    Hi,
    Thanks for the feedback, I adjusted it to include a setTimeout, please check again.

    function custom_mini_cart_total_script() { ?>
      <script>
    (function($){
      $(function() {
      setTimeout(function(){
    $( "p.woocommerce-mini-cart__total strong" )
      .text( "Total" );
      },800);
     });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_mini_cart_total_script');

    Best regards,
    Mike

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

    in reply to: Hide Mason Gallery overflow #1359363

    Hi,
    Sorry, I don’t see a solution for that, I would recommend using a different element if this is an issue.
    But I would like to point out that in real-world examples the visitor’s screen size would not be changing, except on a tablet going from portrait to landscape, and in such a case typically the screen is away from their face while rotating, so it doesn’t seem likely they would see the transition.

    Best regards,
    Mike

Viewing 30 posts - 11,071 through 11,100 (of 34,910 total)