Okay
  Public Ticket #2241248
Center Logo
Closed

Comments

  • yayao1989 started the conversation

    Hello, how do I position the logo so it is in the middle of the header? Thanks

    {"wp":{"use":false,"adminUrl":"https://www.hammahed.com.au/wp-admin","username":"","password":""},"ftp":{"use":false,"url":"","port":"","user":"","password":"","path":""}}
  • [deleted] replied

    Hi,

    That option is not available in the Kalium theme for the moment but it will be possible soon.

    But, I think that you can achieve that by adding a CSS code.

    So if you want to try that then please add the code below to your Custom CSS area:

    @media screen and (min-width: 768px) {
        .logo-column {
            display: block;
            width: 100%;
        }
        .header-logo.logo-image {
            margin-left: auto !important;
            margin-right: auto !important;
        }
        
        .standard-menu-container>nav {
            margin-left: auto;
            margin-right: auto;
            margin-top:20px;
        }
        .pt-column.pt-filters {
            margin: auto;
        }
    }

    Have a nice day!