Forum Replies Created

Viewing 30 posts - 24,601 through 24,630 (of 25,536 total)
  • Author
    Posts
  • in reply to: 3.8 problems #713549

    Hi!

    We will keep this thread open. Thanks for using Enfold :)

    Cheers!
    Nikko

    in reply to: Animation's issues #713546

    Hey!

    For the meantime can you try to check the link I posted in the “private content” section. Please let us know if the issue shows up on your end on the link I have given.

    Cheers!
    Nikko

    in reply to: Animation's issues #713517

    Hi!

    I’m using a dynamic ip, it’s in the private content.

    Regards,
    Nikko

    in reply to: 3.8 problems #713516

    Hey!

    We are very sorry that’s happening on your end, the 3.9 version will be on release soon. Try to update it as soon as it is available, if you still experience this issue, please provide ftp access so we can atleast look at the files and check for errors.

    Best regards,
    Nikko

    in reply to: Blog Image & Single Post Image Cropping #713512

    Hi!

    Sorry if I missed this thread, since you said that the code I gave crashed the site though it works properly on my end, can I request for ftp access? I’m a bit hesitant to test the code I gave to your site since if it crashes I can’t reverse it.

    Regards,
    Nikko

    in reply to: Sidebar Pages, main menu item above submenu #713507

    Hi Jantien,

    I’m not sure I understand what you want to achieve, perhaps you could post a screenshot on what you want to achieve and post a link in “private content” to one of your sidebar page.

    Best regards,
    Nikko

    in reply to: Inline CSS – where does it come from? #713505

    Hey!

    The css was generated by Enfold, you could see this in Enfold > Header > Header Custom Height and there’s a value of 150px which is similar with the code you posted, try to change the value to 130px (or any value), you should see 150px changed to 130px when viewing page source.

    The padding on top isn’t caused by the generated css, but this css code in your Child Theme’s style.css:

    .html_header_top.html_header_sticky #header {
    	margin-top:5%;
    }

    Remove it and the large padding will be fixed.

    Cheers!
    Nikko

    in reply to: Avia not working for new page #713503

    Hey!

    It’s this code:

    add_filter(‘avf_builder_boxes’, ‘avia_register_meta_boxes’, 10, 1); //Add meta boxes to custom post types
    function avia_register_meta_boxes($boxes)
    {
    if(!empty($boxes))
    {
    foreach($boxes as $key => $box)
    {
    $boxes[$key][‘page’][] = ‘sfwd-courses’;
    $boxes[$key][‘page’][] = ‘sfwd-lessons’;
    $boxes[$key][‘page’][] = ‘sfwd-topics’;
    $boxes[$key][‘page’][] = ‘sfwd-quiz’;
    }
    }
    return $boxes;
    }

    Cheers!
    Nikko

    in reply to: Animation's issues #713479

    Hi!

    Would you allow us to have ftp access? so we can inspect further and ask permission to deactivate any/all plugins if necessary. We might find a clue as to what is causing the problem and try to fix it.

    Regards,
    Nikko

    Hi!

    Glad we could help :)

    Regards,
    Nikko

    in reply to: Adding Links To Blog Excerpts #713436

    Hi rymr31!

    Can you give us temporary admin access as well as ftp access? we would like to inspect further. Also, we would like to ask permission to deactivate plugins if necessary. You can post the login details in the “private content” section when you reply.

    Cheers!
    Nikko

    in reply to: Change color of Contact form #713434

    Hey!

    Glad it’s fixed :)

    Cheers!
    Nikko

    in reply to: changing hover on the navigation. #713432

    Hi justinsearl!

    The change you meant was when you hover for example Team it would look like this {Team}?

    Cheers!
    Nikko

    in reply to: Logo center, navigation to the left & right of logo #713431

    Hey!

    Glad that it’s fixed :)

    Regards,
    Nikko

    in reply to: button center sidebar widget #713427

    Hey R,

    I don’t have any solutions that I can provide right now (since there are lots of ways to do it in css), moderators here are good with css so you can be assured if that happens in the future. I’ll leave this thread open, so you can post here if you experience any issue related to this topic :)

    Regards,
    Nikko

    in reply to: change position of button or icon in color section #713420

    Hey!

    I can’t find any special-heading in the homepage that’s using h1, I found 4 but using h2 tags. You can use this code:

    .av-special-heading {
        position: realtive;
        top: -50px;
    }

    Just adjust the values however this is a global class which would affect all special headings in all pages, I suggest using Custom Css Classes: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ just add for example this class custom-special-heading then use this css code in Quick CSS

    .custom-special-heading {
        position: realtive;
        top: -50px;
    }

    This way you can select which special headings this will take effect. Hope this helps :)

    Best regards,
    Nikko

    in reply to: Need help removing the white space above my banner #713416

    Hey!

    If you check on what the latest change, only the background color was changed, the logo wasn’t shrinking on scroll before. Anyway, I added this code:

    #header.header-scrolled .logo img {
        max-height: 28px !important;
    }

    and removed this code:

    @media only screen and (min-width:768px) {
      .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 50px !important;
      }
    }

    Best regards,
    Nikko

    in reply to: sidebar logo icons #713407

    Hi!

    Sorry for the confusion, the last time I checked your site, Ismael’s code was still there, that’s why I didn’t give any instruction to remove, but checking on your code now, that should be all that’s needed, but for some reason the 2nd block of code which is this one:

    .sidebar_left .inner_sidebar {
    margin-right: 0;
    }

    doesn’t seem to reflect on the frontend. Can you try to replace it with this code:

    .sidebar_left .inner_sidebar {
        margin-right: 0 !important;
    }

    If it’s still not working, kindly give us temporary admin access and place it in the “private content” section so only moderators can see.

    Regards,
    Nikko

    in reply to: Transparent header overlay #713404

    Hey!

    Yes, the code in Quick CSS overwrites some css code and that’s what you are seeing, if you want the white background to show on scroll, please remove this code that I gave:

    #top .header_bg {
        background: transparent !important;
    }

    If there’s any changes you need after doing this please let us know.

    Best regards,
    Nikko

    in reply to: Mobile Menu and Image Slider #713398

    Hi!

    Yes, you can change the font size of caption. The code I gave and also Andy’s code shouldn’t have any effect on desktop version since our code only works on mobile devices, you will notice our codes are wrapped in:

    @media only screen and (max-width:767px) {
    
    }

    Can you post screenshots on what issues you find in our codes?

    Cheers!
    Nikko

    in reply to: Combine Hotspot Image with Slider #713394

    Hi!

    You’re welcome. I agree it’s huge and lots of things you can do with it. Please check on our documentation to learn more about Enfold. :)

    Best regards,
    Nikko

    in reply to: Video Display over an image #713391

    Hey PANDAIDX!

    Thanks for creating this thread. I apologize your site is down since I made a mistake in functions.php, can you remove this code at the bottom of functions.php (via ftp or cpanel):

    <script type="text/javascript">
    var $j = jQuery.noConflict();
    
    $j(function(){
    	$j("#home-slider .av_one_fourth .av_font_icon a.av-icon-char").magnificPopup({
          disableOn: 700,
          type: 'iframe',
          mainClass: 'mfp-fade',
          removalDelay: 160,
          preloader: false,
    
          fixedContentPos: false
        });
    });
    
    </script>
    <?php 
    }
    add_action('wp_footer', 'add_lightbox_script');

    Please try to replace it with:

    function add_lightbox_script(){
    ?>
    <script type="text/javascript">
    var $j = jQuery.noConflict();
    
    $j(function(){
    	$j("#home-slider .av_one_fourth .av_font_icon a.av-icon-char").magnificPopup({
          disableOn: 700,
          type: 'iframe',
          mainClass: 'mfp-fade',
          removalDelay: 160,
          preloader: false,
    
          fixedContentPos: false
        });
    });
    
    </script>
    <?php 
    }
    add_action('wp_footer', 'add_lightbox_script');

    I apologize for this, please let us know if it’s up again, and if the code isn’t working I’d like to request for ftp access.

    Regards,
    Nikko

    • This reply was modified 8 years, 1 month ago by Nikko.
    in reply to: Events Countdown plugin not showing #713362

    Hi!

    I think that’s possible please refer to Ismael’s solution on this thread: https://kriesi.at/support/topic/events-countdown-widget-bug/page/2/#post-701707

    Regards,
    Nikko

    in reply to: Problem with displaying Vimeo video #713357

    Hi!

    Thanks for the link, see you on the other thread :)

    Cheers!
    Nikko

    in reply to: HTTP Error on uploading images #713355

    Hi!

    I can see this error in the console:
    Failed to load resource: the server responded with a status of 403 (Forbidden)

    Can you try to use wordpress’ default theme like twenty sixteen? and check if it works or not.

    Cheers!
    Nikko

    • This reply was modified 8 years, 1 month ago by Nikko.
    in reply to: markup being removed when switching to text editor #713339

    Hey!

    We are happy to help :) I also had experience same problem before, that’s why when it’s using html codes I don’t use tinymce editor which wordpress offers.

    Best regards,
    Nikko

    Hey Erkan,

    Glad we could help :)

    Best regards,
    Nikko

    Hi!

    I just checked your site (using icognito), and it seems to be working well and I can’t see the issue before, even with the sumome plugin activated, is it also fixed on your end?

    Cheers!
    Nikko

    in reply to: Full Width Slider + Header tags #713026

    Hey Justin!

    Yes, h2 tags has been used in all sliders in Enfold, I don’t think it is related with Single <h1> Tag rule in SEO why it’s set to h2 but probably because the slider caption titles usually contains important and concise information, but not as important as post titles or article titles. I hope this helps.

    Best regards,
    Nikko

    in reply to: Masonry blog configuration #712994

    Hey vmoralestejedor!

    Can you post a screenshot on how it looks like on your local server? you can upload it in imgur.com or dropbox and post the link here.

    Cheers!
    Nikko

Viewing 30 posts - 24,601 through 24,630 (of 25,536 total)