Sam, this space that you see is actually empty. This is why deleting pads and fields does nothing. Let me explain. When you have this:
HTML
<div>
a
a
a
a
</div>
Here's how to do it:
a a a a
... right?
So, if you have this:
<div>
<div style="display:inline-block"></div>
<div style="display:inline-block"></div>
<div style="display:inline-block"></div>
</div>
... you will get the same:
block [space] block [space] block
Now ... there are many different solutions to this problem. I find the most common is to comment out spaces in html:
<div>
<div style="display:inline-block"></div><div style="display:inline-block"></div><div style="display:inline-block"></div>
</div>
, html . - 0, . :
div {
font-size: 0;
}
div div {
display: inline-block;
font-size: 14px;
}