Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1203726

    Hi folks,
    I’m pretty green at this so here goes!
    Was trying to move my logo to the left of the header on PC.
    Inserted the below code in General Styling, Quick CSS as found on another Kriesi support chat.
    Did not work on the PC but did move it to the left on mobile devices.

    Have sorted PC by placing Logo above menu, but would like to return the logo to the centre (as before) on the mobile.
    Basically looking to undo what I did!

    @media only screen and (max-width: 767px) {
    .responsive #top .logo {
    width: 53%;
    }
    .responsive #top #wrap_all .container.av-logo-container {
    width: 95%;
    max-width: 100%;
    }
    }

    Many thanks for your time,

    Ambrose

    #1204354

    Hey Ambrose,

    Please try this instead:

    @media only screen and (min-width: 768px) {
    .responsive #top .logo {
    width: 53%;
    }
    .responsive #top #wrap_all .container.av-logo-container {
    width: 95%;
    max-width: 100%;
    }
    }

    Best regards,
    Rikard

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