Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #201035

    Hello, i had to made some modifications, that arerealized with the help here. :-)
    Now i got another one.
    I positioned the header with the menu at the bottom of the slider. (margin-top: 212px;)
    The slider is now at the top of the page. (margin-top: -88px;)
    But now the “scroll-menu” is of course with the margin of 212 px on the site.
    Is there a way to change this to that the menu starts with the scroll menu, when the page is scroll for mor than 212 px?

    Hope you understand my question. :-)

    The site can be viewed here:
    http://polyscale.m3ms.de/

    Cheers,
    Markus

    #201347

    Hey!

    Try adding this code to the Quick CSS:

    .header-scrolled #header_main{
    margin-top: 0  !important;
    }

    Cheers! 
    Josue

    #201466

    Hi Josue,
    now the scroll-menu is at the top. Thanx.
    Is there a way that it starts after scrolling 200 px?

    And i got another porblem.
    Can someone take a look with the internet Explorer?
    It´s not scrolling, it´s “jumping”.

    Cheers,
    Markus

    • This reply was modified 10 years, 3 months ago by der_mueller.
    #201624

    Hello!

    It is possible but that customization is beyond the scope of the support we can offer. If you really need it try hiring a freelancer for the job or if you prefer request a quote here.

    Cheers!
    Josue

    #219709

    Hello Josue,
    can this be realized with this jQuery plugin:
    http://bigspotteddog.github.io/ScrollToFixed/

    Cheers,
    Markus

    #219712

    Hi!

    I don’t think that’s necessary, if you know some JavaScript, you can try tweaking it in js/avia.js around line 1044 (avia_header_size function).

    Cheers!
    Josue

    #219717

    Hi Josue,
    thanx for your quick answer.
    Unfortunately im not familiar with Javascript. :-(

    Cheers,
    Markus

    #219720

    Hi,

    Can you create an administrator account and post it here as a private reply?

    Regards,
    Josue

    #219723
    This reply has been marked as private.
    #219730

    Hey!

    I added some code to js/avia.js and css/custom.css and it appears to doing the job, see:
    http://polyscale.m3ms.de/

    This is only applied to the home.

    Best regards,
    Josue

    #219732
    This reply has been marked as private.
    #219734
    This reply has been marked as private.
    #219735

    Hi!

    No i didn’t, the change in js/avia.js is at the very end, this piece of code:

        jQuery(window).scroll(function () {
        	scrollY =  jQuery(window).scrollTop();
            
    		if(scrollY >= 220){
    			jQuery(".home #header").addClass("non");
    		}else{
    			jQuery(".home #header").removeClass("non");
    		}
    
    	});

    Best regards,
    Josue

    #220074

    That works great.
    Thanx a lot!!!!!

    Cheers,
    Markus

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘Scrollmenu’ is closed to new replies.