Viewing 12 posts - 16 through 27 (of 27 total)
  • Author
    Posts
  • gringo211985 Friend
    #928356

    Hi Ninja,

    The code is still in my custom.css I have tried cleaning my cache etc but nothing works.

    Please can you take a look at this for me?

    Thanks,
    Richard

    Ninja Lead Moderator
    #928715

    The problem on your site did not come from cache. I found the problem on your site from this templates/uber/css/custom.css file

    .t3-sl {
    padding-bottom: 0px !important;
    padding-top: 0px !important;
    }

    Please remove that code and the problem should be gone.

    gringo211985 Friend
    #928865

    Hi Ninja,

    What’s going on with this crappy WP forum?

    Every time you reply I can not see it! I get an email saying you replied to my thread in the JA Nex forum, when this is the JA Uber forum lol.

    Anyway can you fix this for me again please and then make sure you tell me exactly what to do so I don’t overwrite changes.

    Thanks,
    Richard

    Ninja Lead Moderator
    #929753

    This is a problem from your custom work on your site and you will see it from templates/uber/css/custom.css file, I wrote the solution to you here

    About the title of mail, it is fixed by our dev.

    boriss Friend
    #938271

    Ninja, as I can see all sample demo sites are still having this problem. I installed one business site, I’m currently working on another one using corporate style, all having the same jumping sticky header. I thought this is fixed in updates, but I’m running all the latest extensions. It’s terrible. Any fix?

    Ninja Lead Moderator
    #938367

    @boriss: It needs a special fix for the problem on your site, please post me the URL of your site here, I will help to check it further.

    boriss Friend
    #938675
    This reply has been marked as private.
    boriss Friend
    #938676
    This reply has been marked as private.
    Ninja Lead Moderator
    #938784

    Hi ninja. Here is url: http://cocomne.com

    @boriss: Try to use this way

    Open templates/uber/acm/header/tmpl/style-1.php file

    find and change

    (function ($) {
        $(document).ready(function(){
            $('#uber-header-<?php echo ($module->id) ?>').affix({
            offset: {
                  top: $('#uber-header-<?php echo ($module->id) ?>').offset().top
                }
        });
        });
    })(jQuery);

    to

    (function ($) {
        $(document).ready(function(){
            $('#uber-header-<?php echo ($module->id) ?>').affix({
            offset: {
                  top: $('#uber-header-<?php echo ($module->id) ?>').offset().top +'px'
                }
        });
        });
    })(jQuery);
    boriss Friend
    #938907

    Thanks for your answer, ninja. It helped, but it cuts images from top a bit.

    Ninja Lead Moderator
    #938974

    The solution below will help you to solve the overlap image on the top.

    Create templates/uber/css/custom.css file and add new rule

    .home div#t3-section {
        padding-top: 51px;
    }
    boriss Friend
    #938978

    Thank you very much, ninja! It works great.
    This should be included in Uber template.
    Btw, same recipe worked for my other Uber site.
    Thanks again.

Viewing 12 posts - 16 through 27 (of 27 total)

This topic contains 27 replies, has 4 voices, and was last updated by  boriss 7 years, 10 months ago.

The topic ‘Header Jumping when using sticky’ is closed to new replies.