[Support request] header with navigation

Home Forums Support [Support request] header with navigation

Home Forums Support header with navigation

Viewing 4 posts - 16 through 19 (of 19 total)
  • Author
    Posts
  • #2344761
    eran

    now?

    #2344783
    David
    Staff
    Customer Support

    First delete this CSS:

    .main-navigation .inside-navigation {
            position: static;
        }
        .main-navigation .menu-toggle {
            position: absolute;
            top: 20px;
            left: 10px;
            z-index: 1000;
        }
    
    @media(max-width: 500px) {
        .site-header .site-branding-container .site-logo {
            margin-right: 10px !important;
    
        }
        .site-header .site-branding-container .site-logo img {
            max-width: 40px;
        }
        .site-header .site-branding-container .main-title {
            font-size: 13px;
        }
        .main-navigation .menu-toggle {
            top: 5px !important;
        }
    	
    }

    then add this CSS to center the mobile logo:

    .mobile-header-navigation .site-logo {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }
    #2344831
    eran

    Thanks it worked.
    how can I add H1 to my blog page?
    when I add Headline in the editor and publish I cant see it on the page.

    #2345019
    David
    Staff
    Customer Support

    Could you raise a new topic so this one can be marked as resolved 🙂

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