[Resolved] Center logo in header on mobile

Home Forums Support [Resolved] Center logo in header on mobile

Home Forums Support Center logo in header on mobile

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #2431594
    David

    Hello

    How do I go about centering this logo when viewing on mobile?

    https://thepropertyfund-com.stackstaging.com/

    Tried a few things from the forum, but none have worked.

    Thanks
    Dave

    #2431776
    Leo
    Staff
    Customer Support

    Hi Dave,

    Try this CSS:

    @media (max-width: 768px) {
        .inside-header .site-logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
    }
    #2432535
    David

    Thanks Leo, that centered the logo on mobile, but when you open the menu the logo disappears. Any ideas why?

    #2432795
    David
    Staff
    Customer Support

    Hi there,

    try:

    
    @media (max-width: 768px) {
        .inside-header .site-logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 20px;
        }
    }

    The top value is the addition that is required, to ensure it remains in place, you may need to tweak the 20px value.

    #2432825
    David

    Brilliant, thanks David 🙂

    #2432939
    David
    Staff
    Customer Support

    You’re welcome

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