[Resolved] Site Title Not Visible in Mobile

Home Forums Support [Resolved] Site Title Not Visible in Mobile

Home Forums Support Site Title Not Visible in Mobile

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #776874
    Navaneetha

    Hai. Site Title Only Visible in Desktop..Its not Visible in Mobile and Tablets

    #776977
    David
    Staff
    Customer Support

    Hi there,

    you have the mobile header option set in Customizer > Layout > Header – go there and you will see a option to add a logo to that, it is designed so you can use a different logo for the smaller screen sizes.

    #777014
    Navaneetha

    Hai.. I have disabled the Mobile Header. Now the site title is showing in all devices. But in mobile and tablet devices its not aligned in center. I would like to align the menu and site title in center. Can u please help me to align center.

    #777037
    David
    Staff
    Customer Support

    Do you have any plugin or server caches you can clear as i am not seeing the navigation on mobile or tablet?

    #777056
    Navaneetha

    its not showing at my end. I have cleared the cache. is there any possibilities to configure my requirements from your end..?

    #777077
    David
    Staff
    Customer Support

    Hi there,

    Autoptimize is for some reason re-ordering the CSS, anyhow we need to apply some CSS to get the layout you want so try adding this:

    @media (max-width: 768px) {
        #site-navigation {
            display: block !important;
            opacity: 1;
        }
        .inside-navigation {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        }
        button.menu-toggle {
            -webkit-box-flex: 1;
                -ms-flex: 1 0 50%;
                    flex: 1 0 50%;
        }
        .inside-navigation .mobile-bar-items {
            position: relative;
            -webkit-box-ordinal-group: 4;
                -ms-flex-order: 3;
                    order: 3;
        }
        .site-branding {
            -webkit-box-flex: 1;
                -ms-flex: 1 0 100%;
                    flex: 1 0 100%;
            -webkit-box-ordinal-group: 0;
                -ms-flex-order: -1;
                    order: -1;
            text-align: center;
        }
        .inside-navigation .main-nav {
            -webkit-box-flex: 1;
                -ms-flex: 1 0 100%;
                    flex: 1 0 100%;
            -webkit-box-ordinal-group: 5;
                -ms-flex-order: 4;
                    order: 4;
        }
        
    }
    #777130
    Navaneetha

    Its working properly.
    Thank you so much

    #777271
    David
    Staff
    Customer Support

    You’re welcome

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