CSS question: How do I center something but have it go left some pixels

SoundTheSurrender

Diamond Member
Mar 13, 2005
3,126
0
0
I have something centered, but I would like to shift it over but still act like it's centering, just that it's centering like 35 pixels to the right.

Thanks
 

Rip the Jacker

Diamond Member
Dec 29, 2004
5,415
1
76
<div id="wrapper"><div id="container"><p>foo bar.</p></div></div>

#wrapper { margin:0 auto; width:200px; }
#container { margin:0 0 0 35px; }

?