Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #521972

    Hi…
    I am having an issue where black bands are appearing on a ‘stretch to fit’ video background when I use the MaxButtons plugin. You can see the bands when you load the following page – (see Error page below in links)

    A correct version can be seen on our original homepage (see Correct page below in links)

    I have tried externally loading the CSS, but this still didn’t resolve the issue.

    How can I fix this?

    Thanks!

    #522227

    Hey pristineio!

    Thank you for using Enfold.

    It seems to fixed itself when you resize the browser. Please try to add this in the functions.php file:

    
    // trigger resize
    function add_custom_script(){
    ?>
    <script>
    (function($) {
    	$(window).load(function() {
    		$(window).trigger('resize');
    	});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Regards,
    Ismael

    #522375

    Hi…it is 95% fixed…any idea why it still does it on the second slide of the video (the one of the server wires)? The background is one video; so I am surprised this is happening.

    From a user credibility point of view, we would like it to work 100%.

    MaxButtons is a wordpress plugin; since the issues seem to arise from MaxButtons, do you know of another button plugin that would work better with your theme?

    Thanks!

    #522764

    Hi,

    Not really sure why you would need a plugin for buttons? There is an element for it already in Enfold, or does it not cover what you need?

    Regards,
    Rikard

    #523117

    Unless I am using your button element wrong, I can’t adjust the font size, I can’t choose any custom font & I can’t create hoverover’s for color variations.

    Am I using it wrong or is it more of a basic element?

    #523540

    Hi!

    You can adjust the font size, font family and hover effect of the buttons via CSS. Example:

    .avia-button .avia_iconbox_title {
        font-size: 20px;
        font-family: 'Open Sans';
    }
    
    .avia-button .avia_button_icon {
        font-size: 20px;
    }
    
    .avia-button.avia-color-orange:hover {
        background-color: red;
        border-color: black;
        color: pink;
    }

    Unfortunately, we don’t provide support for any issues cause by a third party plugin as stated on our support policy. Please contact the plugin author regarding the issue.

    Cheers!
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.