Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #405082

    I’m still struggling with the logo in the website I am building for my customer. It is a very wide ‘logo’, a long text. When I make the document wider, it is placed smaller.
    Now I have tried a lot of options, it is not really bad but I would like better.
    The logo is centered, but I would like it more to the left, more above the heading of the page below.
    When I make a document form my logo with a piece of white at the right so that I hope that the visible part is more to the left, the logo is shown smaller then before and that looks not better.
    Is it possible to add code that the logo is not centered but for example is placed 200 px to the left?
    Or an other way to handle a logo so wide?

    #405427

    Hey Marcel!

    Your just trying to move it to the left a bit? If so then try adding this to your custom CSS.

    .html_header_top.html_logo_center .logo { transform: translate(-60%, 0px) !important; }
    

    Best regards,
    Elliott

    #405680
    This reply has been marked as private.
    #406246

    Hey!

    When you upload the logo, make sure that you select the full size. Go to Enfold > Header then set the Header Size to custom pixel value. Adjust the height of the header same as the height of the actual logo image. Add this to the Quick CSS field to move the logo further to the left:

    strong.logo {
    left: -200px;
    }

    Best regards,
    Ismael

    #406958
    This reply has been marked as private.
    #407478

    Hey!

    Add this to the Quick CSS field:

    .logo img {
    width: 800px;
    height: 120px;
    }

    It will adjust the logo image to its actual size.

    Cheers!
    Ismael

    #407980
    This reply has been marked as private.
    #408663

    Hey!

    Please replace it with this:

    .logo img, .logo, .logo a {
    width: 800px;
    height: 120px;
    }

    That should fix it.

    Regards,
    Ismael

    #424899

    I tryed to use the CSS code above and I got blurry logo image. It is very important to use width:auto instead of fixed width though.

    My header hight is set manually at 77px. My logo size is 77×535 px, so I added the code:

    .logo img, .logo, .logo a {
    width: auto;
    height: 77px;
    }

    It seems that my logo is downsampled and then it is made bigger. May be I can turn off this downsampling “feature”?

    #424907

    I have resolved the issue. While uploading my logo I have chosen to load it as fullsize. Now it works nice. Such a small thing but so much trouble :)

    Thank you for the greatest theme ever! ))

    #425114

    Hey!

    It can be easy to miss, glad you solved your problem and thanks for the kind words :)

    Cheers!
    Rikard

    #513159

    Note: that choice of upload size happens RIGHT after you upload above the “use as logo” button.

    Additionally, I added the following into Quick CSS / Styling area:

    .logo img {
    width: 950px!important;
    height: 155px!important;
    }
    thx/G

    • This reply was modified 8 years, 8 months ago by EAA.
    #513493

    Hey @EAA,

    Thanks for the input :-)

    Best regards,
    Rikard

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