Okay
  Public Ticket #1852579
no sticky header on mobile
Closed

Comments

  • shell3r started the conversation

    hey,

    so i have  sticky header option enabled on theme options, but it only works on desktop site,

    i want to get sticky header/menu on mobile aswell.

    is this possible ?

  • [deleted] replied

    Hi shell3r,

    Currently this option is not implemented however you can activate fixed navigation with this CSS:

    See demonstration: https://d.pr/v/uhyp9L

    @media screen and (max-width: 768px) {
        .top-menu {
            position: fixed;
            left: 0;
            top: 0;
            width: 100%;
        }
        .top-menu + div {
            min-height: 120px;
        }
    }

    Depending on header height you can adjust this 120px to fit to your needs.

    I hope  it works fine for you.

  • shell3r replied

    thanks it worked like a charm. wondering why you havnt added this to the template already.


    One more question. how can i change the secondary color of this theme (currently its red) to other color ? i mean beyond the fixed options listed in theme option page ?

  • [deleted] replied

    Hi,

    We are going to add this functionality in future releases.

    As for secondary color, it can be configured on Theme Styling section, if that doesn't change the color you want then you should add custom CSS to modify few sections that are not covered by colors defined in theme options.