I inserted 1/1 layout inside color section and then used code block element with a form code as follows
<form action=”domainchecker.php” method=”post”>
<input type=”hidden” name=”direct” value=”true” />
Domain: <input type=”text” name=”domain” size=”20″ /> <select name=”ext”>
<option>.com</option>
<option>.net</option>
<option>.org</option>
<option>.info</option>
<option>.biz</option>
<option>.us</option>
<option>.in</option>
</select>
<input type=”submit” value=”Go” />
</form>
and the result is this http://bit.ly/1tHs61B. How do I make the form in straight line/liner/inline…??? No matter where I place the form’s code that’s the result, irrespective of that unused space! Solution please to display it as it should normally!
Hey 666666!
Try adding this to your custom CSS.
.avia_codeblock input, .avia_codeblock select {
display: inline !important;
}
Regards,
Elliott
@Elliott
Hey Hi Elliott,
Don’t know why, it doesn’t work. It still remains the same!
Hey it finally worked! Thank you very much for the class! It worked after placing it within /* General Custom CSS */ commented block!
Before I placed at bottom and it didn’t work, but it works now after placing it within the block mentioned in the style sheet! Thank you very much once again Elliott!
Best Regards
@Elliott
Hi
Now I need to make it centered! Can you please help me with that??
I tried .avia_codeblock form {
margin:auto !important;
}
And that didn’t work!
Please help me with that!