Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Convert Tables to CSS - HELP!

Status
Not open for further replies.
It's a good thing you're redesigning, since your old page does not work at all in FF. So, here's a few pointers:

1. Don't make left side 127px and try and fit images that are 137px wide. That just won't happen. I don't need to make a comparison with the pants, do I?
2. Add a valid doctype to your page. That will help with cross-browser compliance and adherence to standards. List can be found here: 3. If you want to center the page, add [tt]margin: 0 auto;[/tt] to your body.
4. Similar to another recent user, you are producing overly complex code which is hard to debug and change. Try to set the width for a container and then work within that. Don't keep assigning the same absolute width to all the nested containers.
5. Whatever your menu is made of, it has absolutely no idea what it should do in FF.
6. You should give your #mainpage [tt]position: relative;[/tt] to let your #leftnav know that is its point of reference.
7. To shove the left nav to the left side, then use [tt]left: 0;[/tt].

That should get you started.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top