2
Hi, looks like you just have some conflict with your css. your theme css is centering the page but the css file associated with wfdownloads is making it align to the left.
Look at the css file for wfdownloads and make sure there is no selector which would conflict with your theme e.g the thickbox.css seems to be called when on wfdownloads and it has
*
{
margin: 0;
padding: 0;
}
which wont center the page, however your theme css has
*{
margin: 0 auto;
}
which will center your page, so I would say it is thickbox.css which is causing the problem.