Re: Code Optimizing...
start looking at your mysql syntax and optimize that
it will just group things together. so if you have padding:0; 10 times in your CSS it will add them into a number of classes like;
#demo, #demo1, demo2 { pading:0; }
Not a huge optimization but when you have slow connection every little helps :)
Optimizing queries and database tables would be a much better improvement to the CSS thing.