Forum Replies Created

Viewing 30 posts - 24,571 through 24,600 (of 34,598 total)
  • Author
    Posts
  • 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: Center content and show breadcrumbs #1018711

    Hi,
    The white bar is your title container, to remove please add this css:

    .title_container {display: none !important;}

    Best regards,
    Mike

    in reply to: Lightbox Popup fails #1018699

    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,
    Thank you for the login & ftp access. I reset your site and installed the “2017 Demo” and all is working good now.
    Please check your settings such as email, site title, etc to ensure it’s correct.

    Best regards,
    Mike

    in reply to: sub navigation left position #1018692

    Hey DianaLoola73,
    This was because the position for the sub-menu was relative, it should be absolute, like this:

    .av-main-nav li#menu-item-3423 ul.sub-menu {
            left: 0px !important;
            top: 20px !important; 
            position: absolute !important;      
    }
    .av-main-nav li#menu-item-3424 ul.sub-menu {
            left: 0px !important;
            top: 20px !important; 
            position: absolute !important;      
    }

    Best regards,
    Mike

    in reply to: Adding Site Name and Title Tag to Header #1018688

    Hey alexcouto11,
    Sorry for the late reply,
    1: to add the Site Name and Title Tag below the Logo, please see Image logo with subtext
    2: The breakpoints could be adjusted with css, are you referring to the menu or column grid?
    3: the typography is responsive when using “em” instead of “px” were you having trouble with a certain text element?
    4: to use a different logo on mobile please see this documentation
    5: you can use the screen options of most elements to hide or show on different elements.
    2018-10-07_132302

    Best regards,
    Mike

    in reply to: additional button #1018687

    Hey MarcusEls,
    If I understand correctly, you would like a button to reset the form after it’s been submitted so it can be used again. To do this we will create a button that will reload the page, please enter this code in a code block element:

    <script>
    jQuery('.reload').click(function() {
        location.reload();
    });
    </script>
    [av_button label='Refresh' link='manually, link_target='' size='medium' position='center' label_display='' icon_select='yes' icon='ue88f' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' av_uid='av-76dew' custom_class='reload' admin_preview_bg='']

    and place the code block under your form.

    Best regards,
    Mike

    in reply to: Preview button makes changes go live #1018683

    Hi,
    Sorry for the late reply, I took a look at your page and found that previewing the changes without saving resulted in a change.
    Yet when I preform this same action on a new install, on my localhost, previewing doesn’t result in a change.
    Perhaps this is a result of a plugin?

    Best regards,
    Mike

    in reply to: Remove hover text cloud above image in gallery #1018680

    Hey Daniel,
    Sorry for the late reply, can you re-upload the image, it’s not showing from your link.

    Best regards,
    Mike

    Hey erkuto,
    To change the background color for mobile only, Please try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) { 
    .responsive #top .av_header_transparency #header_meta {
    background-color:  rgba(0, 0, 0, 0.6) !important;
    }
    }

    To change the color of the text for mobile only, try this css:

    @media only screen and (max-width: 767px) { 
    .responsive #top .av_header_transparency #header_meta span,.responsive #top .av_header_transparency #header_meta span a {
    color:  #000 !important;
    }
    }

    Best regards,
    Mike

    Hi,
    I have seen you have another thread open for assistance to install a demo, I have offered there.
    This demo doesn’t include all of the demo files, I recommend using the “2017 Demo”

    Best regards,
    Mike

    in reply to: Aligning textblock elements inside color section #1018677

    Hey Enis,
    Thank you for the login, I took a look at you homepage and found the section was at the top of your site.
    So there is a 98px top padding pushing your text blocks down, to adjust Please try this code in the General Styling > Quick CSS field:

    .html_header_transparency #top.home .avia-builder-el-0 .container {
        padding-top: 40px !important; 
    }

    this will cut the padding about in half, but feel free to adjust to suit.

    Best regards,
    Mike

    Hey maxxqf,
    We can try to assist, can we reset your site and try again?
    Might I suggest using the 2017 Demo, because the basic demo doesn’t include all of the demo files?
    2018-10-07_105834
    Please include FTP access in the Private Content area so we can upload the images manually.

    Best regards,
    Mike

    in reply to: 2 Buttons in AJAX PORTFOLIO? #1018669

    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: Move Thumbnail next to excerpt just like in our demo #1018667

    Hi,
    Good point @Guenni007, it looks like the single author small blog layout without the sidebar.
    If you want to use the layout without the sidebar, please try Guenni007’s solution, or this solution.

    Best regards,
    Mike

    in reply to: Fixed socket position only when the user scrolls down #1018665

    Hey StormWebDesign,
    Sorry for the late reply, I believe what you would like is to show the socket only on scroll, and when not scrolling to fadeout.
    I used this CodePen for the function.
    I added this css to your Quick CSS:

    #socket {
        position: fixed;
        z-index: 99999;
        bottom: 0;
        display: none;
        width: 100%;
        background-color: #ffffff;
        cursor: pointer;
    }
    .show, #socket:hover {
        display: block;
    }

    But I was unable to add the script needed to your functions.php:

    function custom_socket_script(){
      ?>
      <script>
    $(window).scroll(function(event) {
    	function socket()
        {
            var scroll = $(window).scrollTop(); 
            if(scroll > 50)
            { 
                $("#socket").fadeIn("slow").addClass("show");
            }
            else
            {
                $("#socket").fadeOut("slow").removeClass("show");
            }
            
            clearTimeout($.data(this, 'scrollTimer'));
            $.data(this, 'scrollTimer', setTimeout(function() {
                if ($('#socket').is(':hover')) {
    	        	socket();
        		}
                else
                {
                	$("#socket").fadeOut("slow");
                }
    		}, 2000));
        }
        socket();
    });
    </script>
      <?php
      }
      add_action('wp_footer', 'custom_socket_script');

    Try adding this code to the end of your functions.php file in Appearance > Editor via ftp or your webhost file manager.

    Best regards,
    Mike

    in reply to: Layerslider not working as before #1018660

    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: Lightbox Popup fails #1018659

    Hi,
    Glad to help, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    Hi,
    Oh I see, you are creating on a localhost?
    Please try connecting with https://ngrok.com/ it’s a free tunnel your localhost to the internet so we can login.
    Or you can setup a free host account with https://hyper.host/ and migrate it there.
    Or I can ask the rest of the team if anyone can assist without seeing the site?

    Best regards,
    Mike

    in reply to: Center content and show breadcrumbs #1018657

    Hi,
    We will be happy to help, are you setting the header as transparent in the editor sidebar options?
    2018-10-07_090739
    Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Icons Showing as Squares | How to solve? #1018656

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.
    Please feel free to delete the test page I created.

    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: Lightbox Popup fails #1018583

    Hi,
    Please try to not “Optimise JavaScript Code” I take this as the same as minifying
    Enfold combines all of it’s JS into a single file dynamically depending on the elements used.
    Please see our post on this.

    If you are done creating your site and are ready to make it as fast as it can be, then please read this post

    Best regards,
    Mike

    in reply to: Icons Showing as Squares | How to solve? #1018580

    Hey thesoulm,
    Thanks for the login, I checked a bunch of your pages but only saw one icon in the “back to top” button.
    So I disabled your cache which sometimes is the issue and I mage a post with many icons, please see link in Private Content area.
    I then enabled your cache again with no issues, but the plugin “WP Super Minify” broke the icons.
    But you should not need it because both Autoptimize & WP Super Cache are minifying already, so this third plugin is over kill.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Layerslider not working as before #1018572

    Hi,
    Glad we could help, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Lightbox Popup fails #1018570

    Hi,
    That’s good news, try using it without minifying js, that’s what typically breaks jQuery
    I believe there is a setting to disable js minifying.

    Best regards,
    Mike

    in reply to: Layerslider not working as before #1018564

    Hi,
    I changed the function a little, now it only targets the correct title:

    function custom_upsell_text(){
      ?>
      <script>
    jQuery(window).load(function(){  
      jQuery(".up-sells.upsells.products > h3:first-child").text("Ti potrebbero piacere anche");
    });
     </script>
      <?php
      }
      add_action('wp_footer', 'custom_upsell_text');

    Please clear your browser cache and check.

    Here’s how to Extending and Renewing Item Support

    Best regards,
    Mike

    Hi,
    You can remove the layerslider at: Enfold Theme Options > Layout Builder > Integrated (Bundled) LayerSlider Plugin

    Best regards,
    Mike

    in reply to: Lightbox Popup fails #1018559

    Hey ofekw,
    Sorry for the late reply, I see your page has the error

    jQuery is not defined

    Please try disabling your plugins to be sure it’s not a conflict, if that doesn’t help please include a admin login in the private content area so we can take a closer look.
    I suspect that the jQuery is not loading in the head like it needs to.

    Best regards,
    Mike

    in reply to: Google Maps problem #1018554

    Hi,
    Please see this price sheet you will be given free credit towards your map views. But you must set up an account with a payment type.

    Best regards,
    Mike

    in reply to: Animated GIF as featured image #1018551

    Hi,
    Sorry for the late reply, this post should help: Solved: GIF not Animating in WordPress – Posts and Featured Images
    I have seen gif’s working on some sites, but they may be using plugins.
    Please let us know if this doesn’t help.

    Best regards,
    Mike

Viewing 30 posts - 24,571 through 24,600 (of 34,598 total)