Site logo

[Support request] Logo position

Home Forums Support [Support request] Logo position

Home Forums Support Logo position

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #739341
    debbie

    Hi, I managed to move the logo to the side, but I am struggling to get it above the title. Can you kindly help? This is my site:
    https://www.intuitivesupportservices.com/

    #739585
    David
    Staff
    Customer Support

    Hi there,

    you could try this CSS for you logo / site branding layout:

    @media (min-width: 769px) {
        .inside-header {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        }
        .site-logo {
            -webkit-box-ordinal-group: 0;
                -ms-flex-order: -1;
                    order: -1;
        }
        .site-branding {
            -webkit-box-flex: 1;
                -ms-flex: 1 0 100%;
                    flex: 1 0 100%;
        }
    }
    #743494
    debbie

    Thank you, that worked, however I forgot to say I wanted to centre it above the title. Is there something I need to add to do that? Many thanks

    #743591
    David
    Staff
    Customer Support

    So this CSS:

    .inside-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .site-logo {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
    }
    #743621
    debbie

    Perfect thank you so very much

    #743626
    David
    Staff
    Customer Support

    You’re very welcome 🙂

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