I\'m trying to remove the margin between the search bar and the \"Go!\" button at the top of this page: http://beta.linksku.com/
I\'ve tried removing all styles and
This is how elements function as inline-block
.
Normally when you use inline-block
elements, you often use them inside a paragraph, so the space between the letters must be consistent. inline-block
elements apply to this rule too.
If you want to remove the space completely, you can float the elements.
float: left;
You can also remove the whitespace from your template document. Like so: