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

    Hi Kriesi-Team,
    I want to centre the Logo and the Burger-Menu on the right side. On the Desktop-Version & iPad it is ok, but only on mobile (iphone) is the Logo position too much left, so that I see only the half oft it. Can you help me to solve this problem, because we want to go online as soon as possible.

    Thx

    #1128854

    Hey bk28832,

    You have this CSS which is causing your problem:

    #top #header_main .logo {
        left: 50%;
        margin-left: -130px;
    }

    I’m not sure exactly where the code is coming from since you have file compression active.

    Best regards,
    Rikard

    #1128861
    This reply has been marked as private.
    #1128900

    Hi,

    If you don’t want the code to apply to mobile screens then you can wrap it in a media query like so:

    @media only screen and (min-width: 768px) {
    #top #header_main .logo {
        left: 50%;
        margin-left: -130px;
    }
    }

    Best regards,
    Rikard

    #1129484

    Hi Rikard,
    it works! Thank you for your help.
    Why is it not possible to have this in the main settings? I think many people use this to have a center logo and the burger menu on the right side?

    Thx

    #1129501

    Hi bk28832,

    Well, the theme options do not have such settings, we are here to help make those changes with css in case those are needed.

    Best regards,
    Victoria

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