Hi,
I’m not sure exactly what you mean, but a simple way of centre aligning an element is to give it a width and then set the left and right margin to auto. For example:
#yourelement {
width: 800px;
margin: 0 auto;
}
You will need to give more specifics if you need additional help.
TT