Site logo

[Support request] Main menu same as blog.appsumo.com

Home Forums Support [Support request] Main menu same as blog.appsumo.com

Home Forums Support Main menu same as blog.appsumo.com

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2516804
    René

    Hey, how can I make a main menu like AppSumo (https://blog.appsumo.com/)? It currently looks the same on desktop as it does on AppSumo, but in the responsive view the burger menu doesn’t slide to the top right, but stays centered under the logo.

    Settings

    #2517234
    David
    Staff
    Customer Support

    Hi there,

    go to Customizer > Layout > Header and enable the Mobile Header.

    #2517585
    René

    As a result, the desktop version did not look as desired. Have now made the setting you mentioned and adjusted the rest with SCSS.

    Desktop
    Desktop

    Mobile
    Mobile

    Code (SCSS)

    $mobile-menu-breakpoint: 960px;
    
    .main-navigation{
    
        border-bottom: 1px solid var(--border);
    
        @media (min-width: $mobile-menu-breakpoint){
            border-bottom: none;
        }
        
        #primary-menu{
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            @media (min-width: 1px) and (max-width: $mobile-menu-breakpoint){
                border-bottom: none;
            }
        }
    
        #primary-menu li a{
            text-align: center;
        }
    
        @media (min-width: $mobile-menu-breakpoint){
            #primary-menu li:hover a{
                font-weight: 700;
                -webkit-box-shadow: inset 0px -2px 0px 0px rgba(0,0,0,1);
                -moz-box-shadow: inset 0px -2px 0px 0px rgba(0,0,0,1);
                box-shadow: inset 0px -2px 0px 0px rgba(0,0,0,1);
            }
            
        }
        
    }
    @media (min-width: $mobile-menu-breakpoint) {
        .navigation-branding, .main-nav{
            width: 100%;
            justify-content: center;
    
        }
        #menu-hauptmenu{
            justify-content: center;
        }
    }
    
    #2518232
    David
    Staff
    Customer Support

    Glad to hear you found a solution

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