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

    Im trying to get a large logo centered in the header. Even though I’ve selected the header as logo centered, menu below, the image is not centered.

    At first even though I set the header to 300px and the logo to fullsize, the logo displayed small. I added quick css code:

    .html_header_top.html_logo_center.avia-webkit .logo {
        left: 0;
        transform: none;
        -webkit-transform: none;
    }
    
    .logo, .logo a {
        height: 100%;
        width: 100%;
    }

    this displays the logo at full size, but it shifts it to the left. (I’ve tried several changes to the left: parameter, but that doesn’t do the trick).

    #947660

    Hey elvirais,

    Please try this in Quick CSS:

    .logo a {
        width: 100% !important;
    }

    Then remove this CSS which seems to be in your Quick CSS:

    .html_header_top.html_logo_center.avia-webkit .logo {
        left: 0;
        transform: none;
        -webkit-transform: none;
        display: table;
        margin: 0 auto;
    }

    Best regards,
    Rikard

    #947709

    That works for centering it, but then the logo displays at a smaller size.

    #948466

    Hi,

    http://nimb.ws/aMHZDg
    I can see the size of the logo been really big, are you sure you do not have cache?

    Best regards,
    Basilis

    #948473

    Support was slow, and I started messing around with css myself. Managed to get it mostly large and centered with this:

    .logo, .logo a {
        height: 100%;
        width: 90%;
        margin-left: 4%;
    }

    The problem is that it’s still off-center on some computers. E.g. my desktop shows it centered, my laptop shows it too far to the right. (No margin-left 5% makes things worse, not better).

    #949042

    Hi elvirais,

    Plese remove margin-left: 4%; form the code above and use this:

    
    .html_header_top.html_logo_center .logo {
        left: 54%;
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

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