CSS“多个提交按钮”问题
好的, 我希望这不会让我看起来太愚蠢,但我们开始吧。
我正在使用 WordPress。我已经安装了自定义主题。主题是使用提交按钮渲染我的表单,该按钮是无法工作的图像。我的目标是找到一种方法来获得真正的提交按钮或表单,而不影响模板中使用它的其他地方。任何建议都会很棒。谢谢!
编辑以添加OP评论中的代码(如下):
<form class="fm-form" method="post" action="" name="fm-form-1" id="fm-form-1">
<h3>Get Your Free Week Pass Here!</h3>
<ul>
<li class="text">
<label>First Name</label><br>
<input type="text" name="text-4db09a31c511b" id="text-4db09a31c511b" value="" style="width:300px;">
</li>
<li class="text">
<label>Last Name</label><br>
<input type="text" name="text-4db09a656e940" id="text-4db09a656e940" value="" style="width:300px;">
</li>
<li class="text">
<label>Email</label><br>
<input type="text" name="text-4db09a714f6bc" id="text-4db09a714f6bc" value="" style="width:300px;">
</li>
<li class="text">
<label>Phone Number</label><br>
<input type="text" name="text-4db09a7bda3ae" id="text-4db09a7bda3ae" value="" style="width:300px;">
</li>
</ul>
<input type="submit" name="fm_form_submit" class="formSubmitButton" value="Submit" onclick="return fm_validate(1)">
<input type="hidden" id="fm-submit-nonce" name="fm-submit-nonce" value="776fd50811">
<input type="hidden" name="fm_id" value="1">
</form>
Ok,
I hope this doesnt make me look too dumb but here we go.
I am using Wordpress. I have installed a custom theme. The theme is rendering my forms with a submit button that is a image that wont work. My goal is to figure out a way to get a real submit button or form of, without affecting the other places where its being used in the template. Any suggestions would be awesome. Thanks!
Edited to add code from the OP's comments (below):
<form class="fm-form" method="post" action="" name="fm-form-1" id="fm-form-1">
<h3>Get Your Free Week Pass Here!</h3>
<ul>
<li class="text">
<label>First Name</label><br>
<input type="text" name="text-4db09a31c511b" id="text-4db09a31c511b" value="" style="width:300px;">
</li>
<li class="text">
<label>Last Name</label><br>
<input type="text" name="text-4db09a656e940" id="text-4db09a656e940" value="" style="width:300px;">
</li>
<li class="text">
<label>Email</label><br>
<input type="text" name="text-4db09a714f6bc" id="text-4db09a714f6bc" value="" style="width:300px;">
</li>
<li class="text">
<label>Phone Number</label><br>
<input type="text" name="text-4db09a7bda3ae" id="text-4db09a7bda3ae" value="" style="width:300px;">
</li>
</ul>
<input type="submit" name="fm_form_submit" class="formSubmitButton" value="Submit" onclick="return fm_validate(1)">
<input type="hidden" id="fm-submit-nonce" name="fm-submit-nonce" value="776fd50811">
<input type="hidden" name="fm_id" value="1">
</form>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们向您的提交按钮添加一些特定的 id(例如:submit_btn),该 ID 仅用于您想要的提交按钮,然后使用 css:
Well add to your submit button some specific id (ex: submit_btn) that is used only for submit buttons that you want and then use css: