Posts: 457
Name: Randy
Location: Northern Wisconsin
|
What exactly is not going right for you? Is there a link we can see this?
There are a few things I would mention:
1. I would not set an explicit width generally on "p" as you are doing. That will affect the whole site. Instead, target that more directly such as #left p { }.
2. If this is all of your css, there is no reset in place. Not that you have to use one, but your #left and #right divs could be inheriting margin or padding in differently across browsers, etc.
3. The footer buttons do not need absolute positioning. They can be floated with some margins set.
4. Where you have set heights is also not always needed. You are forcing a design that cannot ever grow with content in the future. Yes, if there is a background image, sometimes that is unavoidable, but where there is not, I would just set to overflow:hidden (or other clearing methods) to handle the floats and you should be fine.
5. Depending on your doctype, there are some errors with deprecated tags, etc. (target="_blank", <br> is <br />, etc.) Use firebug to help find these as you develop.
|