Forum Replies Created

Viewing 30 posts - 29,881 through 29,910 (of 34,566 total)
  • Author
    Posts
  • in reply to: Animated Numbers to late #897158

    Hi,
    It looks like you are using a Lazy Load plugin, if so it may be adding time to the animation. We have seen other issues where the Lazy Load delayed caused issues with the elements. Try disabling your plugins to see if that helps.

    Best regards,
    Mike

    in reply to: How to remove the Lightbox arrow? #897150

    Hey spalta,
    The images on your home page don’t have the arrow on hover, so I found a different page that did, please check the url in the Private Content area to ensure I’m looking at the correct element.

    Best regards,
    Mike

    in reply to: Other Footer & Socket Style #897143

    Hey jumamedia,
    I’m not sure I understand, it seems the footer & socket look the same on every page. Can you include a screenshot of the issue and how you would like it to look?

    Best regards,
    Mike

    in reply to: Enfold Latest News Widget #897129

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Active menu indicator background #897128

    Hi,
    Ok, thank for using Enfold

    Best regards,
    Mike

    in reply to: Logo in IE11 Looks Very Low Quality #897127

    Hey santanin,
    I have taking a look and IE11 doesn’t render images well because it’s using an old engine, the solution is suppose to be putting X-UA-Compatible IE=Edge in the header, so I put this code to the end of your child theme functions.php file in Appearance > Editor:

    add_action( 'send_headers', 'add_header_xua' );
    function add_header_xua() {
    	header( 'X-UA-Compatible: IE=edge,chrome=1' );
    }

    and cleared your site cache, but didn’t notice a difference.
    I then uploaded a smaller logo and used a media query to target IE11 only in your child theme css:

    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    span.logo a:before {
    content: '';
    background: url(https://yoursite.com/wp-content/uploads/2018/01/tclogoie2.jpg) no-repeat center;
    display: block;
    height: 78px; 
    }
    }

    While the image looked good in IE11 my attempts to hide the old logo failed, IE11 is limited as it is not css3 ready.
    Overall IE11 is hard to work with and why Edge is it’s replacement, your logo looks good in Edge.
    I would suggest trying some other sizes for your logo, I know you don’t want to go down to 340px, but 1400px is way to big. Perhaps try 700px, it should still look good on other browsers and may work with IE11. If you try a few sizes I’m sure you will find a good compromise.

    Best regards,
    Mike

    in reply to: Enfold Latest News Widget #897109

    Hi,
    Glad we were able to help, shall we close this then?

    Best regards,
    Mike

    in reply to: Make Product Images Larger on Single Product Page #897107

    Hi,
    For the font-size and button color try:

    #top.product-template-default.single.single-product h1.product_title.entry-title {font-size: 17px !important;}
    #top.product-template-default.single.single-product div .main_color .button {background-color: red !important; }

    adjust to suit.
    The thumbnails are a part of the product element, and not easy to separate.
    If you use the advanced layout builder it will be very different, not all of the elements with work with woocommerce. But you can try to see if you like it.

    Best regards,
    Mike

    in reply to: Enfold Latest News Widget #897105

    Hi,
    Try:

    h2.post-title.entry-title a {font-size: 20px !important;}

    adjust the number to suit.

    Best regards,
    Mike

    in reply to: Form submissuon: how to scroll to the first error? #897104

    Hi,
    That’s great news! Sorry it took so long, thanks for your patience.
    Is there anything else we can assist with on this issue, or shall we close this then?

    Best regards,
    Mike

    in reply to: Form submissuon: how to scroll to the first error? #896976

    Hi,
    I found this script that will scroll to the top of the page and changed it to be triggered by the submit button. What is nice about this is your can change “scrollTop: 0” to “scrollTo 100” and it will stop 100px from the top of the page, meaning you can adjust where on your page you want it to stop. And it’s not dependent on the ajax ID getting caught.
    I tested it on my localhost and it seems to work.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function add_custom_scroll(){
    ?>
    <script>
    $(document).ready(function () {
    
        $('input.button').click(function () {
            $("html, body").animate({
                scrollTop: 0
            }, 600);
            return false;
        });
    
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_scroll');
    

    Best regards,
    Mike

    in reply to: Should I use a Child Theme? #896974

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.
    Nice work, by the way :)

    Best regards,
    Mike

    in reply to: Make Product Images Larger on Single Product Page #896972

    Hey stovetopchicago,
    For the image, Try this code in the General Styling > Quick CSS field:

    #top.product-template-default.single.single-product .single-product-main-image {
        width: 70%!important; 
    }

    Which text would you like smaller, it seems small on my screen?

    Best regards,
    Mike

    in reply to: Adding a Backround Color for Left Menu Item on Mouse Over #896967

    Hi,
    Try this code in the General Styling > Quick CSS field:

    li.current-menu-item:hover {background: red !important; }

    Best regards,
    Mike

    in reply to: Moving from sandbox to live domain with Enfold #896964

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Reduce line height #896962

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Need help #896961

    Hey comprompt,
    When you click the link “some important page has been removed by request” what does it say?

    Best regards,
    Mike

    in reply to: Font Tenby Five #896959

    Hey McCreight_Media,
    Try adding the full path to the font in the url.
    Then add the css for the elements that you wish to use the new font on in the General Styling > Quick CSS field, such as:

    h1,h2,h3,h4,h5,h6 { font-family: tenby-five-light !important; }

    Best regards,
    Mike

    in reply to: Pictures befor text on mobile #896958

    Hey McCreight_Media,
    You maybe able to use float to change at mobile view, like this:

    @media only screen and (max-width: 767px) { 
    #ID-of-img {float: left !important; 
    #ID-of-text {float: right !important; 
    }

    you will need to add ID’s to the two elements and change the code according

    Best regards,
    Mike

    in reply to: Reduce line height #896955

    Hey bobjonesdesigns,
    Try this code in the General Styling > Quick CSS field:

    .post-entry-5513 .av_textblock_section h3 {
    margin-top: 0px !important; 
    }
    .post-entry-5513 .av_textblock_section p,.post-entry-5513 .av_textblock_section img {
    margin-bottom: 0px !important; 
    padding-bottom: 0px !important;
    }

    Best regards,
    Mike

    in reply to: Space between 3 columns #896954

    Hey Milan,
    Do you have an example in place? I tried logging in but it was disabled.

    Best regards,
    Mike

    in reply to: Footer #896953

    Hey Dildoreus,
    Add [nolink] to the end of your copyright line under Theme Options -> Footer

    Best regards,
    Mike

    in reply to: Moving from sandbox to live domain with Enfold #896952

    Hey siestajoye,
    Deleting the development site is enough.

    Best regards,
    Mike

    in reply to: Menus will not go away #896945

    Hi,
    This is the code in your General Styling > Quick CSS field:

    .logo .subtext {
        font-size: 28px;
        color: #000000; 
    }
    #top .logo-subtitle {
        color: #aaa !important;
        font-size: 12px !important;
        top: 30px !important;
        position: absolute;
       white-space: nowrap;
    }

    the top part is for your site title, and you can change the numbers for font-size & color
    the bottom part is for your tag line, and you can change the same.
    If you know what size and color you want, let us know and we can help adjust it.

    Best regards,
    Mike

    in reply to: Events calendar not compatible with enfold theme #896940

    Hey Joe,
    For issue 1, Try this code in the General Styling > Quick CSS field:

    .av-single-event-content {
        width: 100%!important; 
        float: left!important; 
        margin-left: 0px!important; 
    }
    .av-single-event-meta-bar {
        float: left!important; 
        width: 100%!important; 
        padding-top: 50px!important; 
    }

    For issue 2, this has been hard coded with “display:none” perhaps there is a setting to show this or perhaps this is a pro feature, I’m not sure. I searched and found no info on this.
    Perhaps the guys at modern tribe support would have more info.
    2018-01-13_142119

    Best regards,
    Mike

    in reply to: shortcodes.js?ve 404 #896937

    Hi,
    Thank you for sharing your solution in the other thread, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Cart icon doesn't seem to appear #896935

    Hi,
    Thank you for sharing your solution, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Footer #896933

    Hey P.S. van der Veer,
    Please add [nolink] to the end of your copyright line under Theme Options -> Footer

    Best regards,
    Mike

    in reply to: Can't import Enfold 2017 demo #896927

    Hey Agence-Numix,
    Yes, I linked the Duplicator Files in the Private Content area.
    I have also linked the All-in-One WP Migration files, you may find it a easier import.
    all-in-one-wp-migration
    All-in-One WP Migration tutorial

    Best regards,
    Mike

    in reply to: Cart icon doesn't seem to appear #896925

    Hi,
    Yes that was a good idea, and thanks for that, but both of these issues are very odd. Did you say you migrated this from your localhost? Did you use a plugin to do so, which?
    I wonder if your migration would cause the same errors on my localhost?

    Best regards,
    Mike

Viewing 30 posts - 29,881 through 29,910 (of 34,566 total)