A few questions.
How do I get rid of the borders around the individual info boxes?
Is there a way with the borders there to make a drop shadow around the box?
In the info boxes header (like the one that says Basic Info) how can I make it have a background color but just for the header part and not the whole box?
You have this:
li {border:1px solid; background-color: transparent;}
li {border:1px solid; background-color: transparent;}
You need this:
li {border:0px solid; background-color: transparent;}
li {border:0px solid; background-color: transparent;}
I'm not sure there's a code for that.
You have this:
.header {background-color:transparent; border-bottom:0px solid ; text-align:left; color:; letter-spacing: 2px; font-size: 9pt;text-transform:uppercase;}
All you need to do there is change transparent to . Just be sure to replace the X's with the RGB code.