I have been learning XHTML & CSS and I'm venturing into the DOM arena, too. This website is for my first client. Home Heath Care Services; http://24.89.171.27/. I am currently test and trying to eliminate some bugs.
My questions are:
1.In IE7 on PC I'm not sure about Mac, my image of the city scape disappears. It's in the footer, which is inside of the wrapper div. FireFox, Opera and Safari all renter the image on both PC and Mac.
2. Each page has an image in the branding div container. I tried to implement the images through main CSS document, however it didn't work, so each branding sections is now its own CSS document. It works but is a poor way to code. What are your recommendations to fix this.
3. Do forms need js to work? If so again at are your recommendations?
1. The footer image works fine for me in IE7? 2. If you have a different image in the div for each page, you should create a different class name for the divs on every page rather than use the same each time. This way, you can use these classes in your CSS to apply different images for different pages. Alternatively, you could just not use background-images defined in CSS, and instead simply use an image tag (<img>) accordingly to place imagery inside your div for each page. 3. You need server-side processing for a form to work - JS should only be used for validation, and even then it's wise to include server-side validation too if possible.