Quote Originally Posted by countrycharm View Post
Was this for me jettrue if it was all I see in the style sheet is this

now you said to add a margin-top until it is in the right spot. Do I add another margin: or do I change the one that is already there from auto to top. Sorry I don't understand what you are saying. Thank you for your help.
Yes, it was for you.

Try reading a css shorthand tutorial like this to help you:

http://webdesign.about.com/cs/css/qt/tipcsstrbl2.htm

For example, you could change it to:

margin:15px auto 10px;

which means 15px for the top, auto for the left and right, and 10px for the bottom.

Right now it is saying 10px for the top and bottom, and auto for left and right. The link I posted explains how it works in more detail.