It’s been awhile. Can anyone help with these questions for this page?
Why is the content on the page (except the menu) jumping down in IE 5 and 6?
I can’t figure out why I am not able to make the columns wider even though the large photo above the columns is much wider. I add even 2 px to each column and the 3rd column jumps to the next line. I checked margins, padding, etc.
Lastly, I tried adding this to #columns but the bottom dotted line won’t show and the top starts below the titles in 3 columns instead of above. Wanted the two lines to be right above and below the columns outlining them.
Why is the content on the page (except the menu) jumping down in IE 5 and 6?
There will be a technical answer to that question, but the layman’s answer is—Who cares? Nobody uses IE5 any more, and IE6 has something like a 0.4% userbase, mainly because of China. (I can’t answer your question technically, but truly, I wouldn’t worry about those old, dead browsers. We’ve all moved on.)
I can’t figure out why I am not able to make the columns wider
Lastly, I tried adding this to #columns but the bottom dotted line won’t show …
Try
#columns {
overflow: hidden;
}
That will make the columns div wrap around the floated divs inside it (which otherwise hang out of it). Also remove the height setting on the #columns div, as you should never set heights like this.
The image was just hanging out of the container, as there’s nowhere else for it to go when it’s too wide.
if it’s 678, the columns should be able to be 220 or so each but it won’t go above 210.
You have 10px of right padding on each column, which adds to the overall width, so with each column at 210px wide, your overall width is 660px (210 + 10 + 210 + 10 + 210 + 10). So you have to take padding into account when increasing the width of columns.