Also the semantics of the markup just aren't there. Don't do this: <div class="spotlightheader">
when what you MEAN is this: <h3>
Never use a div where you can use a meaningful element.
"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." Brian W. Kernighan
For your right bar, google for "clear floats". IE expands floats to the bottom of the box which is incorrect. FF won't, and it shouldn't, so you need to clear the float.
Check your widths. IE tends to screw up page widths so if your total width is, say 800px, and your divs add up to 800px, IE will drop that right bar down thinking there's no room for it. Just set all your margins and paddings to zero in the body. Then make them what you want throughout the code so all browsers will follow the same rules and not make some up like IE does.
In your CSS, you have the element 'Body'. Make that all lower case.
"Please give us a simple answer, so that we don't have to think, because if we think, we might find answers that don't fit the way we want the world to be."
~ Terry Pratchett in Nation
* Line: 132 Context : .bookstoresale
Invalid number : padding-top Parse Error - padding-top
* Line: 132 Context : .bookstoresale
Parse Error - 15px;
* Line: 138
Parse Error - : left; text-align: left; border-style: solid; border-width: 0px; } .sale
* Line: 147 Context : .advertising
Invalid number : float center is not a float value : center
Also, the "px" values are for use in styles, not HTML element attributes. Those assume px is the unit.
"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." Brian W. Kernighan
I got them from the W3C CSS validator. Maybe you're just validating the HTML. The HTML warnings I got from Tidy.
"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." Brian W. Kernighan
Bookmarks