Forum Replies Created

Viewing 30 posts - 23,131 through 23,160 (of 35,206 total)
  • Author
    Posts
  • in reply to: Add font-display to entypo-fontello and custom fonts #1065219

    Hi,
    Sorry for the late reply, this looks like a solution for: Google Fonts and font-display

    Best regards,
    Mike

    in reply to: Popup Pro (wpmudev.org) doesn't work after Enfold update. #1065215

    Hi,
    Bitte entschuldigen Sie die verspätete Antwort. Fügen Sie bitte den Admin-Login in den Bereich für private Inhalte ein, damit der Plugin-Fehler angezeigt wird.

    — Translated with Google —

    Sorry for the late reply, please include admin login in the Private Content area so we can see the plugin error.

    Best regards,
    Mike

    in reply to: Smooth Mobile Scrolling & Scroll to top #1065213

    Hi,
    Sorry for the late reply, To enable your scroll to top, 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: 767px) {
    .responsive #scroll-top-link {
      display: block !important;
    }}
    #scroll-top-link {
        opacity: 1 !important; 
        visibility: visible !important; 
    }
    

    Best regards,
    Mike

    in reply to: Mobile speed #1065206

    Hi,
    Ok, it is probably very similar and will assist with your jpg images.
    I assume we can close this now, but I like to ask. Shall we close this then?

    Best regards,
    Mike

    in reply to: Enfold Hamburger Menu Disappeared #1065204

    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 under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Accordion Elements Making Other Page Elements Disappear #1065202

    Hey clbdcnpafe,
    Sorry for the late reply, I tried to take a look at your issue but the login is not admin, so I could not see the page builder and I couldn’t find the pages in question. But the situation that you are describing is typically common with pages that have broken HTML tags in the title fields of the elements, such as <strong>, often when a page with broken HTML tags is saved as a template the error is carried over each time it is used but the error is not visible when viewing the source code.
    Cases just like yours have been solved by not using the templates and building a new page from scratch, and then saving a new template.
    Another issue I see is the use of the “preview” instead of saving the page and viewing, the dev team has found that this is not working correctly due to some technical issues. They are working on this, but to view the pages you are working on, please save and view in a new tab.

    Best regards,
    Mike

    in reply to: Base.css overriding custom css #1065196

    Hi,
    Sorry for the late reply, I took a look at your form and the main issue the I see is specificity, for example, while the happy forms is adding color the label titles it doesn’t include the “span” which the theme is assigning color to.
    But in other cases the happy form is assigning the color to the form title at the top of the page:
    2019-02-10-130756
    I tried changing the order that the css loads, but because of specificity it didn’t help, I also tried removing the base.css for the one page, but that broke the header and footer.
    So for the solution, I copied the happy forms customized css for the one page and added specificity to it and added it to the page in a code block element.

    <style>
    #top #main #happyforms-form-449 {
    happyforms-form-width: 100 !important; 
    happyforms-form-title-font-size: 32px !important; 
    happyforms-part-title-font-size: 22px !important; 
    happyforms-part-description-font-size: 18px !important; 
    happyforms-part-value-font-size: 18px !important; 
    happyforms-submit-button-font-size: 18px !important; 
    happyforms-color-primary: #000000 !important; 
    happyforms-color-success: #39b54a !important; 
    happyforms-color-error: #ff7550 !important; 
    happyforms-color-part-title: #000000 !important; 
    happyforms-color-part-value: #000000 !important; 
    happyforms-color-part-placeholder: #888888 !important; 
    happyforms-color-part-border: #dbdbdb !important; 
    happyforms-color-part-border-focus: #407fff !important; 
    happyforms-color-part-background: #ffffff !important; 
    happyforms-color-part-background-focus: #ffffff !important; 
    happyforms-color-submit-background: #a81010 !important; 
    happyforms-color-submit-background-hover: #3567cc !important; 
    happyforms-color-submit-border: transparent !important; 
    happyforms-color-submit-text: #ffffff !important; 
    happyforms-color-submit-text-hover: #ffffff !important; 
    happyforms-color-rating: #cccccc !important; 
    happyforms-color-rating-hover: #f39c00 !important; 
    happyforms-color-rating-bg: #efefef !important; 
    happyforms-color-rating-bg-hover: #407fff !important; 
    happyforms-color-table-row-odd: #fcfcfc !important; 
    happyforms-color-table-row-even: #efefef !important; 
    happyforms-color-table-row-odd-text: #000000 !important; 
    happyforms-color-table-row-even-text: #000000 !important; 
    happyforms-color-choice-checkmark-bg: #ffffff !important; 
    happyforms-color-choice-checkmark-bg-focus: #000000 !important; 
    happyforms-color-choice-checkmark-color: #ffffff !important; 
    happyforms-color-dropdown-item-bg: #ffffff !important; 
    happyforms-color-dropdown-item-text: #000000 !important; 
    happyforms-color-dropdown-item-bg-hover: #dbdbdb !important; 
    happyforms-color-dropdown-item-text-hover: #000000 !important; 
    }
    </style>

    From what I can see it is working correctly, the field click is getting the blue border, the titles are black, ect.
    Please clear your browser cache and check, and let us know if something is missing so we can assist.

    Best regards,
    Mike

    in reply to: best method to show videos #1065173

    Hi,
    Sorry for the late reply, for your video on your homepage I wrote a script that plays the video on one click, I purposely targeted only the homepage video to test, but if you have other videos we could add a unique class to all the videos with the Enfold Theme Options > Layout Builder > Show element options for developers option and then adjust the script.
    I added this function to your functions.php:

    //play fullscreen video on one click
    function play_video_on_one_click(){
    	?>
    	<script>
    	(function($){
    		$(window).load(function() {
    			$('#top.home #fullscreen_slider_1').on('click', function(){
    				$('#top.home #fullscreen_slider_1 .av-click-overlay').trigger('click');
    			})
    		});
    	})(jQuery);
    	</script>
    	<?php
    	}
    	add_action('wp_footer', 'play_video_on_one_click');

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Different header logo for different sections of website #1065162

    Hi,
    Glad we were able to help, and thanks for sharing your solution it should help others with their customization to see examples. 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 under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: What kind of plugins for this forum #1065160

    Hi,
    Thanks, have a great day.

    Best regards,
    Mike

    in reply to: Accordion Tabs Gap Between each Tab #1065157

    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 under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Change Color for active #1065156

    Hi,
    When I view “Fliegen USA” it’s working when transparent and after scroll, I assume that you have tried clearing your browser cache?
    2019-02-10-095612

    Best regards,
    Mike

    in reply to: How to Make Blog Post Title H1 #1065037

    Hey algkent,
    I took a look at both sites and the titles are both H1
    2019-02-09-175322
    2019-02-09-175206
    If you would like to increase the size of the font, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    h1.post-title a {
    font-size: 30px !important;
    }

    Best regards,
    Mike

    in reply to: LazyLoad a div? #1065034

    Hi,
    Sorry for the late reply, I searched for the script that delayed the css animation in Enfold, and found it in:
    enfold\js\shortcodes.js
    starting on line 390:

    $.fn.avia_sc_animation_delayed = function(options)
    {
    	var global_timer = 0,
    		delay = options.delay || 50,
    		max_timer = 10,
    		new_max = setTimeout(function(){ max_timer = 20; }, 500);
    	
    	return this.each(function()
    	{
    		var elements = $(this);
    
    		//trigger displaying of thumbnails
    		elements.on('avia_start_animation', function()
    		{
    			var element = $(this);
    			 
    			if(global_timer < max_timer) global_timer ++;
    			
    			setTimeout(function()
    			{ 
    				element.addClass('avia_start_delayed_animation'); 
    				if(global_timer > 0) global_timer --; 
    			
    			}, (global_timer * delay));
    			
    		});
    	});
    }

    so reading this it looks like the elements with the class “avia_start_animation” get the class “avia_start_delayed_animation” added to them. I’m not sure if this will help you, but this is where the lazy load is starting in Enfold.

    Best regards,
    Mike

    in reply to: image sizes – page load #1065027

    Hi,
    I took a look into this issue and found a good explanation here with a function, unfortunately, the function in the article didn’t quite match the image sizes in Enfold so I tried to adjust it:

    function armd_resp_img_sizes( $attr, $attachment, $size ) {
        if ( is_array( $size ) ) {
            $attr['sizes'] = $size[0] . 'px';
        } elseif ( $size == 'widget') {
            $attr['sizes'] = '36px';
        } elseif ( $size == 'square') {
            $attr['sizes'] = '180px';
        } elseif ( $size == 'featured') {
            $attr['sizes'] = '1500px';
        } elseif ( $size == 'featured_large') {
            $attr['sizes'] = '1500px';
        } elseif ( $size == 'extra_large' ) {
            $attr['sizes'] = '1500px';
        } elseif ( $size == 'portfolio' ) {
            $attr['sizes'] = '495px';
        } elseif ( $size == 'portfolio_small' ) {
            $attr['sizes'] = '260px';
        } elseif ( $size == 'gallery' ) {
            $attr['sizes'] = '845px';
        } elseif ( $size == 'magazine' ) {
            $attr['sizes'] = '710px';
        } elseif ( $size == 'masonry' ) {
            $attr['sizes'] = '705px';
        } elseif ( $size == 'entry_with_sidebar' ) {
            $attr['sizes'] = '845px';
        } elseif ( $size == 'entry_without_sidebar' ) {
            $attr['sizes'] = '1210px';
        }
        return $attr;
    }
    add_filter( 'wp_get_attachment_image_attributes', 'armd_resp_img_sizes', 25, 3 );

    Best regards,
    Mike

    in reply to: Mobile speed #1065004

    Hi,
    Sorry for the late reply, I took a look at your site and found that 3 of your header images are in the “webp” format and are about 4 times larger than the “jpg” images.
    2019-02-09-142634
    I was able to take one of your jpg images (42.2 KB) and compress it with tinyjpg.com to 36.3 KB, for a savings of 14%, making it 5 times smaller than one of the webp images (188 KB)
    I would recommend using the jpg images and use the TinyJPG plugin

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, with the Theme Options > Product gallery have WooCommerce 3.0 product gallery selected.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .woocommerce-product-gallery__image img.zoomImg:hover {
        width: 200% !important; 
        height: 200% !important; 
    }

    Please clear your site & browser cache and check.

    Best regards,
    Mike

    in reply to: Audio Player does not start automatically on all devices #1064985

    Hi,
    Sorry for the late reply, but Apple announced a while back that they disabled auto play of videos on Safari, this is a stand that they are taking, and Chrome is expected to follow soon. I can’t find anything on the Samsung Browser, so it’s hard to say.
    Unfortunately there is not anything we can do to force auto play on browsers blocking this.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, I took a look at your site’s mobile fallback image and adjusted the css to:

    @media only screen and (max-width:1000px) {
    #top.home [data-rel=slideshow-1] img {
        height: 500px !important;
        min-height: 500px !important; 
        background-repeat: no-repeat !important;
        background-size: 375px !important; 
    }
    }

    I also noted that your image looked a little off for mobile, so I cropped it a little and uploaded a new version, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: How I use the support forum #1064963

    Hi,
    Sorry for the late reply, I have taken a look at your site and see that the menu goes to mobile at your brake point correctly so that the menu doesn’t overlap the logo.
    I’m not sure if you still need assistance with this, if you do can you please explain.

    Best regards,
    Mike

    in reply to: What kind of plugins for this forum #1064959

    Hi,
    Sorry for the late reply, as far as I know, @Gitte is correct, but there are many custom features, and it would not be available to the public. Sorry I couldn’t be more help.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, I used 3 different malware & virus scanners which gave your site a clear result.
    So I took a look and your footer and social icons seem fine, Please see the screenshot in Private Content area.
    Do you still need assistance with this? Please explain what changes you would like.

    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 under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, I wrote this script to remove the ajax search results on click, so when the user clicks away from the results the disappear, yet entering a new search creates a new search result, and it doesn’t interfere with clicking the results.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function remove_ajax_search_response(){
      ?>
      <script>
    (function($){
    $(window).click(function(){
      $( ".ajax_search_response" ).remove();
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'remove_ajax_search_response');

    Best regards,
    Mike

    in reply to: different body text #1064854

    Hi,
    Sorry for the late reply, if I understand correctly you would like this text to be 30px ‘Montserrat’, Please try this code in the General Styling > Quick CSS field

    .av-subheading p,h3.av-special-heading-tag  {
    font-family: 'Montserrat' !important; 
    font-size: 30px !important;
    }

    and download the font from Google fonts and upload to your Enfold Theme Options > Import/Export > Custom Font Manager
    If your want to replace the special heading of the text and use a Text Block element then be sure to add a custom class, as explained above and use this css:

    .custom_class p {
    font-family: 'Montserrat' !important; 
    font-size: 30px !important;
    }

    just change the “custom_class” with your custom class.

    Best regards,
    Mike

    in reply to: Accordion Tabs Gap Between each Tab #1064850

    Hey KenMarshall,
    Could you please include a screenshot of the issue on your iPhone? While I don’t have an iPhone I may still be able to assist if I knew what the issue was.
    Otherwise, another team member who has one could assist.

    Best regards,
    Mike

    in reply to: Change Frame and "Send" Button Color in Contact Form #1064848

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

    #top.page-id-162 .main_color input[type='text'],#top.page-id-162 .main_color input[type='email'],#top.page-id-162 .main_color textarea {
    border-color: #696969 !important; 
    }
    #top.page-id-162 .main_color #submit,#top.page-id-162 .main_color input[type='submit'] {
    background-color: #623920 !important; 
    }
    #top.page-id-162 .main_color #submit:hover,#top.page-id-162 .main_color input[type='submit']:hover {
    background-color: #4ecac2 !important; 
    }
    #top.page-id-162 .main_color label {
    color: #4ecac2 !important; 
    }

    Best regards,
    Mike

    in reply to: Horizontal Slider Overlay #1064843

    Hey image2site,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.home .aviaccordion-preview-title-wrap {
        background: rgba(254, 234, 54, 0.3) !important; 
    }

    Please adjust the color to suit, then clear your browser cache and check.
    For this example, I used a yellow.
    2019-02-08-205339

    Best regards,
    Mike

    in reply to: Accordion Tabs Gap Between each Tab #1064837

    Hey KenMarshall,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.page-id-3037 .togglecontainer .av_toggle_section {
        padding-bottom: 2px !important; 
    }

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

    Best regards,
    Mike

    Hey shawnbanack,
    It looks like you are using the advanced layout builder for your blog posts, to achieve this layout you will need to use the default or classic editor for posts. Then when you create the blog page with the advanced layout builder and use the “Blog” element, please use these settings:
    2019-02-08-203646

    Best regards,
    Mike

Viewing 30 posts - 23,131 through 23,160 (of 35,206 total)