Tagged: 

Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #375961
    #376353

    Hi Animationink!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    strong.logo {
    top: 50px;
    }

    Regards,
    Yigit

    #379852

    Hi Yigit,

    That work great, Its there a way of controlling the size of the logo as well? Say

    strong.logo {
    top: 50px;
    max-height: 200px;
    }

    #380203

    Hey!

    Yes and if your code does not work, please post the link to your website so we can look into it.

    Cheers!
    Yigit

    #380578

    Hi Yigit,

    I’m currently testing the site out locally. So I will do my best to explain what’s happening.

    So the max-height isn’t working in the custom css. I can adjust the height in Which cuts the bottom of the logo. Is the logo being clipped due to the 88px value or is there something else i’m missing?

    Also when I resize the browser the img style=max-height value is lost and defaults back to 88px.

    Red shows the cropped area.
    Cropped area in red

    <strong class=”logo”>
    Tremco Pipeline Equipment

    #380918

    Hey!

    Without seeing your website it would totally be a shot in the dark Carl. Can you please post the link to your website when you launch it so we can provide you an accurate custom CSS code?

    Cheers!
    Yigit

    #381563

    Hi Yigit,

    That’s understandable. I have uploaded a testing site for you.

    http://animationink.com.au/test_temp/

    example of increased logo size

    #382844

    Hi!

    use this code:

    .logo img {
    max-height: 100% !important;
    height: 95px;
    }
    

    Cheers!
    Andy

    #387496

    Hi Andy,

    I have tried the code and it has worked at all. I have also tried adding a px value to max-height and it’s the same cropping results.

    http://animationink.com.au/test_temp/

    Cheers

    Carl

    #387497
    This reply has been marked as private.
    #388153

    Hey!

    You should set the overflow property of the logo to visible. Try this:

    strong.logo, .logo a {
    top: 20px;
    max-height: 150px;
    overflow: visible;
    }

    Cheers!
    Ismael

    #388154

    Hi Ismael,

    How do I increase the size of the logo image?

    Carl

    #388965

    Hi!

    Adjust the height and max height limitation of the logo image:

    .logo img {
    max-height: 215px !important;
    height: 215px;
    }

    Cheers!
    Ismael

    #392811

    Hi Guys,

    That worked thank you. Is there a way to make the logo transparent once scrolling down from its present state?

    Cheers!

    Carl

    #393073

    Hi!

    Please add following code to Quick CSS as well

    .header-scrolled .logo {
    opacity: 0;
    }

    Regards,
    Yigit

    #393429

    Worked a treat. Thanks for the support guys.

Viewing 16 posts - 1 through 16 (of 16 total)
  • The topic ‘Floating/overlapping Logo’ is closed to new replies.