• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Quick HTML help

I haven't looked at your code, but that typically implies that you need another "text-align" property somewhere else in your CSS.
 
Hm, I gave it a quick look over, and I'm pretty sure it's something with the way you're using it in tables. I don't want to strike up a huge debate, but this is where it would be so much easier if you used a div layout with CSS instead of tables.

The only "band-aid" fix (which I don't recommend - you'd be better off fixing the actual problem) is to use a
padding-left: 100px;
instead of the
text-align: center;

It seemed to move it just fine, though I might be +/- 5px on exact center.
 
<!-- Menu Script -->
<table width="100%"><tr><td align="center"><script type="text/javascript" src="menu.js"></script></td></tr></table>
<!-- End Menu Script -->
 
Back
Top