|
You could also try to get rid of tables and just use css the following code is an example. it goes between the head tags. you can change right to left or change the px adjust top, height , and width this will tell the layer exactly where to be and how to look.
.header {z-index: 4; background-color: #95b0cb; position: absolute; right: 112px; top: 119px; height: 150px; width: 612px; padding: 1em; }
in the body you can use almost any normal tag like <p> or <div> then add class="header" example <div class="header"></div> or <p class="header"></p>
you can also change the name of the class to what ever you want.
|