Hi all,
When you click on one of the black images in this page the div is shown: http://tinyurl.com/285yetp
However when you click on one of the images in IE5.5 then there is a space under the black images before the image, lilke this: http://tinyurl.com/2a9cngc
How can I get rid of this “padding” in IE5.5? Thanks
The gap is there in ie6 and 7 as well and is because of the default top margin on the form element.
Remove it like so.
form{margin:0}
You still have issues with the widths of the elements so check your dimensions all add up and remove the whitespace in the html between images or you will get big gaps.
all of the images are all 100px X 140px;
The total width of the images is 400px, they all have a border so that will be 8px width so the total width of the content inside the class is 408px.
IHow can I fix this and get rid of the padding? Thanks
That table is making this ten times harder than it needs to be. You will need to add a height to the second td because IE will distribute the top and bottom heights otherwise.
Thanks Paul that is awesome! I am trying to position the button http://tinyurl.com/2d5pqcy I was thinking about absolute positioning? What is the best way to do this-maybe using table aligns to control the button?