Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #163777

    My logo on the top of the page is cut on the bottom within Citrix / IE8.0. The fixed top level is going accross the logo. Within other browsers no problems. my website is http://www.financieelmarketeers.nl How can this be solved?

    Thanks

    Regards
    Michiel

    #163944

    Hello mschoonhoven!

    You can add this on your custom.css or Quick CSS:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .main_menu ul:first-child > li > a {
    padding: 0 8px;
    font-size: 11px;
    }
    
    .logo img {
    width: 220px;
    height: auto;
    max-height: 73px;
    }
    }

    Best regards,
    Ismael

    #164177

    Hi Ismael,

    Thanks, but unfortunately that didn’t solved the problem. Any other suggestions?

    Regards
    Michiel

    #165184

    Hi Michiel!

    It looks like you missed a bracket when copying+pasting the css above.

    So go to your Quick CSS and make sure to add that second } at the end of the css Ismael provided so that it actually takes effect.

    Cheers!
    Devin

    #165199

    Hi Devin,

    I add the second } but unfortunately it doesn’t solve my problem… (I put in the second } when I copied the code in the first place, but deleted it because I thought it would work without but it didn’t)

    Regards
    Michiel

    #165226

    I didn’t realize this was actually to fix IE8 which this definitely wouldn’t since it doesn’t recognize media queries. I’m not sure why the default fix included with the theme isn’t working in IE any longer. Right now this snippet int he layout.css file is not getting applied in IE like it should:

    .logo img{
    padding:5px 0;
    display: block;
    width: auto;
    height: 100%;
    max-height: 100%;
    height : 100%\9; /*hack: fixes ie8 logo*/
    height: auto\9; /*hack: fixes ie8 squished logo*/
    }
    

    For some reason the IE8 hack isn’t getting applied. Not sure if its a recent IE update thats changed the way it renders or what. One thing you can try for an immediate fix is to use:

    .logo img{
    padding:5px 0;
    height: 100%;
    }

    Which hopefully doesn’t have any ill effects anywhere else.

    #165573

    thanks Devin, it looks like this solved the issue, without other effects elsewhere..

    #166247

    Glad we could help. Let us know if you have any other questions or issues.

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Logo problem within Citrix / IE8.0’ is closed to new replies.