Private: Home › Forums › WordPress Themes › Elvyre – Retina Ready WordPress Theme › Menu Scrolling / Fixed Issues › Reply To: Menu Scrolling / Fixed Issues
Hello,
I’ve noticed the problem in Chrome. Once you start scrolling, the jQuery script adds the “static” class to “header-wrapper”. The header-wrapper has position: relative;
before scroll, and gets position: fixed
once you start scrolling. Chrome seems to be slower with the class switching and css apllying and that’s why the header flickers.
I will try to find out the best solution for this problem and will get back to you soon.
Concerning the content manager problem, please go to wp-content/plugins/content-manager/css/ and open admin.css file.
Find the following code at about line 879:
.cma-admin-dialog.ui-dialog{
border: none;
background: #fff;
border-radius: 0;
}
Add the position: fixed
attribute so the code looks like:
.cma-admin-dialog.ui-dialog{
border: none;
background: #fff;
border-radius: 0;
position: fixed;
}
Robert