Support Forum

For all questions related to themes and plugins!

Enter search keyword e.g. "footer color".

  • Registration is Required

    Registration is required to post questions to support forum. ThemeForest buyers also need to obtain Purchase code to be able to post on forum.

    Please read here how to obtain Purchase code.

#2628
Robert Kavgić
Participant

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