Really should, like flippers.be said, align centre; color scheme is good; perhaps a slight rollover change on the navigation buttons; a change in font would really help - Verdina (however you spell it). But I still like it.
Try to get another font-family for your text. The classic one is ugly. I guess if your layout will pe centered in your page, it will look nicer. Don't you?
Pretty Good design i think, it just needs the odd tweak to get it up to excellent, personally, i would: You should round the corners on the two outer boxes as all other boxes have rounded edges, they look out of place. The buttons look good, but maybe should be centered instead of having a pointless icon to fill up the space. Center all the dark blue boxes as some are closer to other boxes than some others. Some of the fonts seem to be standard Times New Roman, thats old, make it simple, edgy, my personal favorite is Verdana, i mean, easy-to-read, isn't boring, looks nice & is available on pretty much every web browser as standard. Center the whole thing instead of it being pushed to the left. Other than those, i really, really like this design, really great work
Like Xabber said center the page. add body {text-align: center; margin: 0; padding: 0; } to your .css file. Also put your menu to list using <ul> <li> tags. I heard that spiders crawl listed menus better.
body { color: #ffffff; background: #FF9A00; } it still shows this for me but should be body { color: #ffffff; background: #FF9A00; text-align: center; margin: 0; padding: 0; }
Nice layout....it more good if you centered align and the center content is not applied the css...rest is fine....!!! regards, website designer
Mh. Copy paste this body again. made little changes. body { color: #ffffff; background: #FF9A00; text-align: center; margin: 0; padding: 0; border: 0; position:relative; } After that where your <body> tags starts and before </body> tag ends add <div id="name"></div> So it looks like this in your case <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <div id="name"> ..... whole page code </div> </body> And add to css: #name { text-align: left; position: relative; margin: 0 auto; padding: 0px; } I hope it works.