Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1180672

    Hi there,

    i’d like to create a nice big header, with
    – Logo centered and Menu below

    BUT, if i scroll down, and the sticky header shrinks, i’d like to change the position
    So the shrinking, sticky header has position:
    – Logo left and Menu right.

    #1180868

    Hey breezemedia,

    Could you please give us a link to your website, we need more context to be able to help you.

    Best regards,
    Victoria

    #1184003

    i send you a link in PM

    #1184521

    Hi breezemedia,

    I do not see any changing logo position here.

    Enfold has the Logo center + Menu below position, you just need to rearrange it when the user scrolls.

    Best regards,
    Victoria

    #1186887

    sorry, i don’t really see that issue in the documentation.
    – what are the classes to manipulate in Quick-CSS to rearrange the logo and menu in the shrinked header?

    As you can see in the example:
    – Logo centered and Menu below

    sticky shrinking header
    – Logo left and Menu right.

    Maybe you can link the correct site on documentation or give me any hint?

    #1187294

    Hi, i really tried every forum-hint on that.
    What is the ID or class for the shrinked Logo Positon.
    for example
    .scrolled-header does not work

    When i look to the css, i can not see a special class for that changed settings in shrinked header…

    Please give me any hint

    #1187922

    Hi,

    Sorry for the delay. You can use the following css code to adjust the position of the logo and main menu when the header shrinks or during scroll.

    @media only screen and (min-width: 768px) {
    .html_header_top.html_logo_center .header-scrolled .logo {
    	position: relative;
    	left: 0;
    	transform: none;
    }
    
    .html_header_top.html_logo_center .header-scrolled #header_main_alternate {
    	position: absolute;
    	right: 0;
    	top: 30px;
    }
    }
    

    Please don’t forget to toggle the Performance > File Compression settings after adding the code.

    Best regards,
    Ismael

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