Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.
Try it out and discover for yourself.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Join the Community
by: s8webPosted on 2009-08-02 at 16:43:20ID: 25001148
have you set the padding and margin for <h1> to 0 or a small number? You could try it inline or in the head of your document to test. If it works and you have a global css declare it there globally or if necessary with a style. There may be a global declaration in your third party code so I suggest checking there as well.
<style type="text/css">
h1 {margin: 0px; padding: 0px;} /* you don't need the units but its good if you need to change it */
</style>
OR
<td rowspan="1"><h1 style="margin: 0px; padding: 0px;">This is a test!!!</h1></td>