
Originally Posted by
eggo9432
Thanks! A lot of people have been telling me that they suggest color changes, but not which colors should be changed. Would you possibly mind telling me what colors you think need to be changed and what colors you recommend for them? That would be extremely appreciated!
Sure. Like for the top black bar.. instead of a solid black, which isnt really that attractive place this gradient below:
Code:
background: #45484d; /* Old browsers */
background: -moz-linear-gradient(top, #45484d 0%, #000000 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #45484d 0%,#000000 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #45484d 0%,#000000 100%); /* IE10+ */
background: linear-gradient(top, #45484d 0%,#000000 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
The css is cross browser friendly so dont worry about it.. ive even placed the tags along to help u incase u want to remove some or anything 
Let me know if you want to make similar changes and if its looking good.. ;)