javascript - Sign-up button is not working in my Launchrock widget -


i built landingpage --> http://www.zentify.com/ used twitter bootstrap , integrated launchrock widget , adjusted of css. looks wanted look, submit button "jetzt unternehmen anmelden" not work.

does understand why button not leading anywhere? code snippets helpful see?

here custom css https://github.com/boeru/zentify-website/blob/master/css/custom.css

the css , html of widget edit directly in advanced code editor while logged in launchrock widget editor.

this js comes launchrock widget (does problem lie here?)

the widget css in launchrock advanced code editor window.lrignition.themesjs.customtheme = function() { /* not modify above line unless know doing */ this.init.push(function() {     /* code here run on initialization */ }); // uncomment override default mode set behavior /* this.setmode = function( ignition, mode ) {     var container = ignition.getcontainer(); // jquery     if( mode === "main" ) {         container.find( ".lr-content" ).removeclass( "lr-sharing-page" );         container.find( ".lr-site-share" ).hide();         container.find( ".lr-sign-up-container" ).show();     } else if( mode === "postsignup" ) {         container.find( ".lr-content" ).addclass( "lr-sharing-page" );         container.find( ".lr-sign-up-container" ).hide();         container.find( ".lr-site-share" ).show();     } }; */ /* not modify below line unless know doing */   };   window.lrignition.themesjs.customtheme.prototype = new ( window.lrignition.themesjs.clean || window.lrignition.themesjs.common )( "customtheme" ); 

this overwrite css of widget

.lr-sign-up-submit{  style="background-color:#00fa9a;" height: 100px;     }   .mybutton { width: 98%;        -moz-box-shadow:inset 0px 1px 0px 0px #00fa9a;     -webkit-box-shadow:inset 0px 1px 0px 0px #00fa9a;     box-shadow:inset 0px 1px 0px 0px #00fa9a;      background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #00fa9a), color-stop(1, #00fa9a));     background:-moz-linear-gradient(top, #00fa9a 5%, #00fa9a 100%);     background:-webkit-linear-gradient(top, #00fa9a 5%, #00fa9a 100%);     background:-o-linear-gradient(top, #00fa9a 5%, #00fa9a 100%);     background:-ms-linear-gradient(top, #00fa9a 5%, #00fa9a 100%);     background:linear-gradient(to bottom, #00fa9a 5%, #00fa9a 100%);     filter:progid:dximagetransform.microsoft.gradient(startcolorstr='#00fa9a', endcolorstr='#00fa9a',gradienttype=0);      background-color:#00fa9a;      -moz-border-radius:7px;     -webkit-border-radius:7px;     border-radius:7px;      border:1px solid #fafafa;      display:inline-block;    color: #333333;     font-family:trebuchet ms;     font-size:17px;     font-weight:bold;     padding:11px 38.5px  ;     margin:0px 3px 6px ;     text-decoration:none;      text-shadow:0px 1px 0px #00fa9a;  } .mybutton:hover {      background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #33ff99), color-stop(1, #33ff99));     background:-moz-linear-gradient(top, #33ff99 5%, #33ff99 100%);     background:-webkit-linear-gradient(top, #33ff99 5%, #33ff99 100%);     background:-o-linear-gradient(top, #33ff99 5%, #33ff99 100%);     background:-ms-linear-gradient(top, #33ff99 5%, #33ff99 100%);     background:linear-gradient(to bottom, #33ff99 5%, #33ff99 100%);       background-color:#33ff99; } .mybutton:active {     position:relative;     top:1px; }   .lr-bg-img { margin-top: 0px; background-attachment: relative; background-color: #222222; background-image: url("img/classicbg.png"); background-position: center center; background-size: cover; content: ""; height: 700px; left: 0; margin: 0; padding: 0; position: relative; top: 0; width: 100%; z-index: -1; }   div.lr-box-container { z-index: -1; }   .lr-content { margin-top: 75px; color: #ffffff; font-family: "helvetica neue",helvetica,arial,"lucida grande",sans-serif; font-size: 14px; font-weight: 300; height: 600px; min-height: 100%; position: relative;  z-index: 0; display: block; }  .cookie { margin-top: 160px; font-family: cookie; font-size: 6em }   .neuehelvetica { font-family: "helvetica neue",helvetica,arial,"lucida grande",sans-serif; font-weight: 400; margin-top: -40px;}  div#lr-widget {   height: 540px; 

if there more code posted understand problem, please let me know. advice , comments appreciated. guess rather small problem, stuck.

i errors indicating none of linked scripts on page have loaded. of particular interest jquery didn't load, nor of bootstrap.js scripts.


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -