Jump to content

Unable To See Send Button In Contact Form


koreng

Recommended Posts

Send button is not visible because there is inline CSS display:none on it.

 

<div class="submit" style="display: none;">
<button type="submit" name="submitMessage" id="submitMessage" class="button btn btn-default button-medium" style=" display: none;"><span>Send<i class="icon-chevron-right right"></i></span></button>
</div>
 
Edit code and remove style="display: none;" from both places in above code.
Link to comment
Share on other sites

 

Send button is not visible because there is inline CSS display:none on it.

 

<div class="submit" style="display: none;">
<button type="submit" name="submitMessage" id="submitMessage" class="button btn btn-default button-medium" style=" display: none;"><span>Send<i class="icon-chevron-right right"></i></span></button>
</div>
 
Edit code and remove style="display: none;" from both places in above code.

 

 

Here are my code

 

<div class="submit">
<button type="submit" name="submitMessage" id="submitMessage" class="button btn btn-default button-medium"><span>{l s='Send'}<i class="icon-chevron-right right"></i></span></button>
</div>
 
There is no code "style=" display: none;""
 
as i mention above, i can see send button in my localhost, but when i uplod it to hosting this send button was gone.
Link to comment
Share on other sites

<script type="text/javascript">

$(document).ready(function(){

    // Simple call

            $('.submitMessage, #submitMessage,.contact-form-box .submit').css('display','none');

            // More complex call

    $('.QapTcha').QapTcha({

    autoSubmit : true,        

        disabledSubmit : true,

    autoRevert : true,

txtLock    : "Bentuk terkunci, slide untuk membuka",

txtUnlock  : "Bentuk Unlocked",

    PHPfile    : "/modules/slidecaptcha/php/Qaptcha.jquery.php"

    });

  });

</script>

 

 

Above script is causing the issue which is being added by slidecaptcha module. Try to disable this module. Am not sure why, but this module is hiding this button.

Link to comment
Share on other sites

 

<script type="text/javascript">
$(document).ready(function(){
    // Simple call
            $('.submitMessage, #submitMessage,.contact-form-box .submit').css('display','none');
            // More complex call
    $('.QapTcha').QapTcha({
    autoSubmit : true,        
        disabledSubmit : true,
    autoRevert : true,
txtLock    : "Bentuk terkunci, slide untuk membuka",
txtUnlock  : "Bentuk Unlocked",
    PHPfile    : "/modules/slidecaptcha/php/Qaptcha.jquery.php"
    });
  });
</script>
 
 
Above script is causing the issue which is being added by slidecaptcha module. Try to disable this module. Am not sure why, but this module is hiding this button.

 

 

Thanks for your help, its work

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...