Well, I went searching on the web and found the answer to #3 of my little issues.
I learned that vertical align does not work in css, so you have to use the height of your image as your guide to vertically center text in your image.
To center my text in my box header images, I used the height of the image. i.e. I added the last two line in the code.
PHP Code:
.leftBoxHeading, .rightBoxHeading {
margin: 0em; height: 67px; width: 149px;
background-color: #ACB8C8;
background-image: url(../images/tilebktag.jpg);
padding: 0;
height:67px;
line-height:67px;
}
Hope this helps someone else and now I'm still looking for my other answers if anyone can help...........