[Resolved] Menu moves to left when sticky.

Home Forums Support [Resolved] Menu moves to left when sticky.

Home Forums Support Menu moves to left when sticky.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #172689
    Jonathan

    I have tried to find the answer to my issue, but no luck. The sticky menu on my site is behaving like the sticky menu on the demo site http://demo.generatepress.com. When you start to scroll the page the menu that was aligned right moves to the left. This doesn’t happen on https://generatepress.com. The sticky menu stays aligned right (doesn’t move) when you start to scroll the page.

    I want my site’s menu to stay on the right when scrolling the page. What am I doing wrong? In “customize” Header Alignment is right, Nav Pos is float right and Nav Allign is Right. Still the menu moves left as I start to scroll. I downloaded GP yesterday so I’m hoping that I am just missing something simple. Thanks!

    #172715
    Tom
    Lead Developer
    Lead Developer

    This is a bug which has been fixed in the next version of GP Premium/Menu Plus πŸ™‚

    If you’d like to apply the fix right away, you can add this CSS:

    @media (min-width: 769px) {
    	.nav-float-right .navigation-clone.main-navigation .menu > li {
    		float: none;
    		display: inline-block;
    		*display: inline;
    		*zoom: 1;
    	}
    
    	.nav-float-right .navigation-clone.main-navigation ul {
    		letter-spacing: -0.31em;
    		font-size: 1em;
    	}
    
    	.nav-float-right .navigation-clone.main-navigation ul li {
    		letter-spacing: normal;
    	}
    
    	.nav-float-right .navigation-clone.main-navigation {
    		text-align: right;
    	}
    }

    Let me know if you need more info πŸ™‚

    #172730
    Jonathan

    Easy enough! Thanks!

    #172753
    Tom
    Lead Developer
    Lead Developer

    You’re welcome πŸ™‚

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.