this has been trying my patience for about an hour so I thought I would ask.
I need to have three divs, centered inside another div that is inside another div lol. Here
The text-align:center; declaration needs to be on the outermost div, i.e. frontnav in your example.
text-align:center;
frontnav
div element can only be center by setting margin css property as
margin: 0px auto;
Change the last rule to:
.frontboxes { margin: 6px auto; }
and remove the float: left;s.
float: left;