I *think* I understand but I'm not 100% sure. Do you mean how the Agrimark/Cobble Walk text is a bit wider than the peachy title bars?
I think that's because of default cell-spacing and cell-padding in tables - if you don't define them yourself, browsers will add their own, and they are different depending on which you're using. You used to be able to (re)set those in HTML4 like this;
Code:
<table border="0" cellspacing="2" cellpadding="2" width="100%">
But sadly that doesn't work in HTML5. It has to be done in the CSS, which is probably a good idea so you can explicitly define the paddings that you want on the actual <td>s afterwards.
Try this in your stylesheet;
Code:
table { width:100%; border-spacing:0; border-collapse:collapse; border:0; }
And then on the table cells you can define your own paddings which should then be the same in all browsers - eg;
Code:
td { padding:2px 4px; }
Bookmarks