Thanks Esmi.
Just checked that im down to 5 Errors, errors which I can't sort unless I get rid of the top carrousel.
As for the rounded box. Ive been told there is a way. Heres the code I use for the rounded boxes (if no one minds me posting it here):
/* CSS3 CROSS-BROWSER BOX RADIUS */
-moz-border-radius: 10px; /* FF1-3.6 */
-webkit-border-radius: 10px; /* Saf3-4, iOS 1-3.2, Android <1.6 */
-khtml-border-radius: 10px;
border-radius: 10px; /* Opera 10.5, IE9, Saf5, Chrome, FF4, iOS 4, Android 2.1+ */
/* useful if you don't want a bg color from leaking outside the border: */
-moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;
Im just glad I managed to have the gradients working across all browsers.