Hi,
Just some notes on your css.
Add # to all colors.
Remove period "." from h1,h2 and p as these are not classes.
Add qoatation "" around image pathways inside brackets.
Also "0px" should should be definded as just 0.
You might rethink layout. Foot in definded postion won't move as content grows. The right links and foot are getting padding from p tags. Removing p from hrml should fix those issues. OR define p in css for those areas as in.
#footcontent p {padding:0; margin:0}
#toplinks p {padding:0; margin:0}
#navsub p {padding:0; margin:0}
|