Hi Themeco-Team, what´s new with this issue?
We are planning the next project and we need around 15-20 Licenses (multinational Company)
So what?
cy.
Nothing has changed, it is still at the front of our queue to look into after this coming release as mentioned previously. We have said very specifically we plan on looking into it after this release, which was already in full swing when we talked last.
Thank you for your understanding.
Three weeks later, three months later. Update after update…my clients head is getting more and more red…
Three weeks later, three months later. Update after update…my clients head is getting more and more red…
Hi there,
Sorry to hear that, please try this temporary fix. Please add this to your global custom javascript
jQuery( function($) {
$(window).scroll( function() {
if( $(this).scrollTop() > 0 && !!navigator.userAgent.match(/Trident.*rv\:11\./) ) {
$('.x-masthead > .x-bar').addClass('x-bar-fixed').attr('style', 'top: 0px; height: 65.28px; width: 100%; transform: translate3d(0px, 0%, 0px);');
$('.x-masthead > .x-bar .x-bar-content').attr('style', 'height: 65.28px;');
} else {
$('.x-masthead > .x-bar').removeClass('x-bar-fixed').attr('style','');
$('.x-masthead > .x-bar .x-bar-content').attr('style', '');
}
} );
} );
Then please add this CSS to your global custom CSS
@media all and (-ms-high-contrast:none)
{
*::-ms-backdrop, .x-masthead > .x-bar .x-bar-content,
.x-masthead > .x-bar {
transition: all 300ms linear !important;
}
}
Though, this is only applicable to the first site you provided since it has 1 sticky bar. You may enhance it if you wish to apply it to other sites, this is just a tempory fix while our developers are working on the main fixes.
The 65px value is the target height when it changes size upon scrolling, the same value from chrome to make it uniform across browsers. The CSS is then the animation/easing to make sure it doesn’t blink when the size changes.
Thanks!