sammybotz Posted January 10, 2017 Share Posted January 10, 2017 This integration code is in whmcs: <form action="https://********.biz/clients/cart.php?a=add&domain=register" method="post"> Find your Domain: <input type="text" name="query" size="40" /> <input type="submit" value="Go" /> </form> I want to increase the height of the box from where they enter their domain name. Please let me know how to add code to above. Thank you very much 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted January 10, 2017 Share Posted January 10, 2017 ideally, you should add a class to your CSS code and do it that way - but if you wanted to use inline-CSS, you could do... <form action="https://********.biz/clients/cart.php?a=add&domain=register" method="post"> Find your Domain: <input type="text" name="query" size="40" style="height:100px;"/> <input type="submit" value="Go" /> </form> though you'll probably want something less than 100px! 0 Quote Link to comment Share on other sites More sharing options...
sammybotz Posted January 10, 2017 Author Share Posted January 10, 2017 That worked perfectly, thank you very much I noticed when typing inside the box the text is still small though. Anyway to increase that also please? Thanks again: <form action="https://********.biz/clients/cart.php?a=add&domain=register" method="post"> Find your Domain: <input type="text" name="query" size="40" style="height:40px;"/> <input type="submit" value="Go" /> </form> 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted January 10, 2017 Share Posted January 10, 2017 I noticed when typing inside the box the text is still small though. Anyway to increase that also please? <form action="https://********.biz/clients/cart.php?a=add&domain=register" method="post"> Find your Domain: <input type="text" name="query" size="40" style="height:40px;font-size:20px"/> <input type="submit" value="Go" /> </form> 0 Quote Link to comment Share on other sites More sharing options...
sammybotz Posted January 10, 2017 Author Share Posted January 10, 2017 Excellent, thanks so much once again 0 Quote Link to comment Share on other sites More sharing options...
sammybotz Posted January 10, 2017 Author Share Posted January 10, 2017 back again, sorry The submit button labeled "ENTER" needs to be alot bigger please. <form action="https://*******.biz/clients/cart.php?a=add&domain=register" method="post"> <input type="text" name="query" size="40" style="height:40px;font-size:20px"/> <input type="submit" value="ENTER" /> </form> 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted January 10, 2017 Share Posted January 10, 2017 similar solution... <form action="https://*******.biz/clients/cart.php?a=add&domain=register" method="post"> <input type="text" name="query" size="40" style="height:40px;font-size:20px"/> <input type="submit" value="ENTER" style="height:44px" /> </form> 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.