Hope this helps, I tested and works but someone with more knowledge may have better coding.
This is for centering logo
in your includes/templates/zj_silver/css/stylesheet.css file
find:
Code:
#headerWrapper,#contentMainWrapper,#logoWrapper,#cartBoxListWrapper,#ezPageBoxList,#cartBoxListWrapper ul,#ezPageBoxList ul,#mainWrapper,#popupAdditionalImage,#popupImage{margin:0;padding:0;}
#logoWrapper{background-image:url(../images/logo.gif);background-repeat:no-repeat;background-color:#fff;height:106px;line-height:106px;margin:auto;}
#logo{line-height:106px;}
and change to:
Code:
#headerWrapper,#contentMainWrapper,#cartBoxListWrapper,#ezPageBoxList,#cartBoxListWrapper ul,#ezPageBoxList ul,#mainWrapper,#popupAdditionalImage,#popupImage{margin:0;padding:0;}
#logoWrapper{background-color:#fff;margin:auto;width:989px;height:106px;border-left:1px solid #9a9a9a;border-right:1px solid #9a9a9a;}
#logo{line-height:106px;margin-left: 105px;}
hope it helps!