Forum Replies Created

Viewing 30 posts - 24,001 through 24,030 (of 25,536 total)
  • Author
    Posts
  • in reply to: Phone number links change of color on mobile #725714

    Hi!

    Glad we could help :)

    Regards,
    Nikko

    in reply to: enfold site map #725577

    Hi,

    In Appearance > Settings I have modified Front page displays and set it to Your latest posts (this is the default), this is to make sure it doesn’t conflict with Enfold’s theme settings. In Enfold > Blog Layout, I have set Blog Layout to Use the advance layout editor to build your own blog layout (simply edit the page you have chosen in Enfold->Theme Options as a blog page). And in the page itself, I have added the right sidebar.

    Best regards,
    Nikko

    in reply to: Short description reverting #725573

    Hey tankerhq,

    I’ve tested it and it does behave the way you described, can you try to deactivate all plugins except woocommerce, and check if the issue disappears, if yes try to activate the plugins one by one to know what’s causing it, if not try to repair your database table. Hope this helps.

    Best regards,
    Nikko

    in reply to: Masonry caption effect #725571

    Hey!

    Try to replace this code:

    .av-masonry-image-container:hover {
    filter: grayscale(0%);
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    filter: none;
    }

    To this one:

    .av-masonry-entry.isotope-item:hover .av-masonry-image-container {
      filter: grayscale(0%);
      -webkit-filter: none;
      -moz-filter: none;
      -ms-filter: none;
      filter: none;
    }

    Hope this helps :)

    Cheers!
    Nikko

    • This reply was modified 8 years, 2 months ago by Nikko.
    in reply to: Disable Admin Bar on Safari Browser #725527

    Hi Pascal,

    Glad we could help :)

    Cheers!
    Nikko

    in reply to: Logo issues across mobile devices #725512

    Hi!

    No, I only touched Quick CSS and added the code I given above.

    Regards,
    Nikko

    in reply to: Gallery one column #725508

    Hi,

    Try using Gallery element then just add all images, then have the following settings:

    1. Gallery Style: Small Thumbnails
    2. Gallery Preview Image Size: Large
    3. Gallery Columns: 1

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Use standard menu on mobile #725497

    Hey essjb,

    Glad that you fixed it :)

    Best regards,
    Nikko

    in reply to: Phone number links change of color on mobile #725495

    Hi,

    Try adding this code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
      .avia_textblock p span a {
        color: blue !important;
      }
    }

    Let us know if it helps :)

    Best regards,
    Nikko

    in reply to: Header is hiding top of section when using anchor #725494

    Hey Thomas,

    Please give us temporary admin account, also can you post the link of the page where you have the screenshot, I checked the link given above but I see the cool video instead of the two columns :)

    Best regards,
    Nikko

    in reply to: Magazine element with CPT #725490

    Hey pharefm,

    We would be glad to help you with this customization, but at the moment there is no easy way to do this by using a small custom code snippet, so I am afraid its out of the scope of our support.

    But please feel free to request such feature at our feature request system: https://kriesi.at/support/enfold-feature-requests/

    This system allows us to keep track of user suggestions and lets you vote on the feature you would like to see the most. I am afraid though there is no guarantee that a feature will get implemented. If that’s something you really need you can always try to hire a developer for the task :)

    Best regards,
    Nikko

    in reply to: ALB Blog Image Overlay #725484

    Hi,

    Try replacing this code:

    .avia_transform .blog-third-section a .image-overlay,
    .avia_transform .blog-third-section a:hover .image-overlay {
    opacity: 0.85 !important;
    display: block !important;
    background: #006b86 !important;
    }
    .avia_transform .blog-section-fourth a .image-overlay,
    .avia_transform .blog-section-fourth a:hover .image-overlay {
    opacity: 0.75 !important;
    display: block !important;
    background: #000 !important;
    }

    to

    .avia_transform .blog-third-section a .image-overlay,
    .avia_transform .blog-third-section a:hover .image-overlay {
      opacity: 0.85 !important;
      display: block !important;
      background: #006b86 !important;
      left: 0 !important;
      top: 0 !important;
    }
    
    .avia_transform .blog-section-fourth a .image-overlay,
    .avia_transform .blog-section-fourth a:hover .image-overlay {
      opacity: 0.75 !important;
      display: block !important;
      background: #000 !important;
      left: 0 !important;
      top: 0 !important;
    }

    Let us know if this helps. :)

    Best regards,
    Nikko

    in reply to: Contact form auto scrolling to invalid inputs #725468

    Hi,

    Please feel free to request – or vote if already requested – such feature on Enfold feature request form.

    Best regards,
    Nikko

    in reply to: CSS for blog-grid image on hover #725467

    Hey Moaaaaya,

    Thanks for using Enfold. Try changing your code to this:

    .slide-image img {
     transition: all 0.5s ease 0s;
    }
    
    .slide-image:hover img {
     -moz-transform: scale(1.5);
     -ms-transform: scale(1.5);
     -o-transform: scale(1.5);
     -webkit-transform: scale(1.5);
     transform: scale(1.5);
    }

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: Google Analytics tracking #725460

    Hi,

    It’s good that it’s working using piwik.

    Best regards,
    Nikko

    in reply to: Masonry caption effect #725456

    Hey!

    I couldn’t see the link, you can only see the preview if you have an admin account I think. Can you publish it and post the link?

    Best regards,
    Nikko

    in reply to: Disable Admin Bar on Safari Browser #725453

    Hi,

    I have checked it and it’s weird you can hide it in administrator account but still showing up on the customer account, I have replaced the code with:

    if(!current_user_can('edit_posts')) {
      remove_action( 'wp_footer', 'wp_admin_bar_render', 1000 );
      add_action('wp_footer', 'hideAdminBar');
    }
    
    function hideAdminBar() { ?>
    <style type="text/css">	
    html { margin-top: 0 !important; }
    * html body { margin-top: 0 !important; }
    
    @media screen and ( max-width: 782px ) {
      html { margin-top: 0 !important; }
      * html body { margin-top: 0 !important; }
    }
    </style>
    <?php 
    }

    Let us know if it’s working on your end.

    Regards,
    Nikko

    Hi!

    I’m not sure how we can help without ftp, I have tested the solution I have given and it works properly on my end, the reason I asked for ftp is I’d like to check if it’s not added properly or if there’s a conflict somewhere.

    Best regards,
    Nikko

    in reply to: Logo issues across mobile devices #725328

    Hey!

    I have added this in Quick CSS:

    @media only screen and (max-width:767px) {
      .responsive .logo img {
        top: 0;
        max-width: 40%;
      }
    }

    It should look better now.

    Regards,
    Nikko

    in reply to: sidebar logo icons #725303

    Hi,

    Try to replace the code I gave in the previous post to:

    .page-id-3647 .sidebar_left #nav_menu-4,
    .page-id-3650 .sidebar_left #nav_menu-4 {
        display: none;
    }

    If you need to add more pages to hide the menu, you just need to add
    .page-id-XXXX .sidebar_left #nav_menu-4,
    where XXXX is the id of the page, just place it above:
    .page-id-3647 .sidebar_left #nav_menu-4,
    Hope this helps.

    Cheers!
    Nikko

    in reply to: masonry gallery with customed links #725299

    Hey!

    Glad we could help :)

    Best regards,
    Nikko

    in reply to: Avia Buttons to 'Add To Cart' Buttons #725097

    Hi,

    Glad that you fixed it. :)

    Best regards,
    Nikko

    in reply to: Periodically portfolio galleries disappear #725096

    Hi,

    Thanks for informing us. We will keep this thread open until you have confirmed it’s resolved.

    Best regards,
    Nikko

    in reply to: Contact Form #725092

    Hi,

    You can upload the image in http://imgur.com/ or https://www.dropbox.com/ then paste the link here.

    Best regards,
    Nikko

    Hey Kevin,

    I have tried it on my end but I don’t have any issues on my end. What browser are you using?

    Best regards,
    Nikko

    Hey gugler,

    I’m not really sure I understood properly but can you post a screenshot showing a comparison when you are using a twentysixteen theme and Enfold?

    Best regards,
    Nikko

    in reply to: enfold app demo on ipad #725073

    Hey richardbeatty,

    Can you post a screenshot how it looks like on your ipad?

    Best regards,
    Nikko

    in reply to: Animated countdown translation multi-language site #724685

    Hey ehoogstad,

    I have checked your site and it seems you have already done it. :)

    Best regards,
    Nikko

    in reply to: Cart Drop Down Icon Number Not Updating On Update Cart Button #724680

    Hi,

    Thanks. It should be working now. I have commented out this code:

    function cart_update_qty_script() {
        if (is_cart()) :
        ?>
        <script>
            jQuery('div.woocommerce').on('change', '.qty', function(){
                jQuery("[name='update_cart']").trigger("click"); 
                location.reload(true);
            });
        </script>
        <?php
        endif;
    }
    

    as it might conflict with this code that I have added at the bottom of functions.php:

    add_action('wp_footer', 'ava_new_custom_script');
    function ava_new_custom_script(){
    ?>
    <script type="text/javascript">
    jQuery(window).load(function(){
    	jQuery(".quantity .minus, .quantity .plus").on("click", function(){
    		jQuery("header").find("span.av-cart-counter").text(jQuery(this).closest(".quantity").find(".input-text").val());
    	});
    });
    
    </script>
    <?php
    }

    Let us know if it works well on your end :)

    Best regards,
    Nikko

    in reply to: EASY SLIDER #724649

    Hey zunini,

    We’re good :) Thanks for using Enfold.

    1.) Edit Easy Slider and at the bottom check Use first slides caption as permanent caption

    Mobile phone issue:
    Try adding this code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
      .avia-slideshow .avia-caption h2.avia-caption-title {
        font-size: 12px !important;
      }
    }

    Just adjust the font size as you see fit.

    2.) I can only see layerslider not easy slider. I can only suggest as a workaround is probably to use layerslider on desktop and tablet, then hide it on mobile phone and use an easy slider.

    Best regards,
    Nikko

Viewing 30 posts - 24,001 through 24,030 (of 25,536 total)