Tagged: , , ,

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

    Hey Alexandervc33,

    This CSS in Quick CSS seems to be causing that to happen:

    .home span.logo {
      left: 50%;
      -webkit-transform: translate(-50%,0);
      -ms-transform: translate(-50%,0);
      transform: translate(-50%,0);
    }

    If you only want that to apply to screen sizes above mobile, then please change it to this:

    @media only screen and (min-width: 768px) {
    .home span.logo {
      left: 50%;
      -webkit-transform: translate(-50%,0);
      -ms-transform: translate(-50%,0);
      transform: translate(-50%,0);
    }
    }

    Best regards,
    Rikard

    #1328640

    Super, Danke!

    Das Logo erscheint jetzt auf der Mobile Version. Allerdings ist das Logo ziemlich klein, kann man die größe des Logos in der Mobile Version ändern ?
    Das Logo soll mittig ausgerichtet sein und von der größe gut sichtbar sein. Ist das machbar ?

    Vielen Dank und Gruß

    Alex

    #1328706
    This reply has been marked as private.
    #1328721

    Hi Alex,

    Please try this CSS as well:

    @media only screen and (max-width: 767px) {
    .responsive .logo img {
        max-height: 160px;
    }
    }

    Best regards,
    Rikard

    #1328723

    Hi tjg,

    The transparent logo is set under Enfold->Header->Transparency Options, could you try changing it there please?

    Best regards,
    Rikard

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