jquery - Assistance with z index causing various errors -


please have @ webpage - http://dev.topyaps.com/how-awesome-are-you

this post built wordpress plugin developed. facing various issues because of z index property of elements. issues -

1) on scroll menu merges floating bar on page. css of menu -

kodda_container { z-index: 999 !important; width: 1220px; height: 40px !important; background-color: ; border-top: solid transparent; border-right: solid transparent; border-bottom: solid transparent; border-left: solid transparent; background-image: -webkit-linear-gradient(top, transparent, transparent); } 

css of floating bar -

.scorebox {     background: #fafafa;     border: 1px solid #d1d1d1;     width: 100%;     z-index: 997; } 

2) on clicking submit button center box appears. center box has on top while hides.

css of center box -

element.style {     padding: 6px;     word-wrap: break-word;     position: fixed;     top: 50%;     left: 50%;     margin-top: -18px;     margin-left: -206px;     z-index: 999;     display: block; } 

3) try clicking on login , register button on homepage - http://dev.topyaps.com/. actual styling of login/register popup. in post "how awesome you?" , when click on login/register styling changes styling of center box (the 1 appears on clicking submit button).

css of login box -

element.style {     display: block;     position: fixed;     top: 50%;     left: 50%;     margin-top: -163.5px;     margin-left: -230px;     z-index: 10001; } 

please try tell me way can fix these issues.

your homepage being styled by:

http://dev.topyaps.com/wp-content/plugins/simplemodal-login/css/default.css?ver=1.0.7

whereas content page being styled by:

http://dev.topyaps.com/wp-content/plugins/challenges/modal/jquery.modal.css?ver=3.9.1

looks may have two, conflicting plugins @ work.


Comments

Popular posts from this blog

c++ - OpenCV Error: Assertion failed <scn == 3 ::scn == 4> in unknown function, -

php - render data via PDO::FETCH_FUNC vs loop -

The canvas has been tainted by cross-origin data in chrome only -