Hello, I have developed a script store using ezypal script. The page looks great in firefox, but there are to many gaps when it loads in IE. URL: www.websitescripts.org Anyone help?
Well, I'm in firefox so I can't see your problems but I suggest you look at the IE box hack (do a google search) and apply this to your css. It may be the problem where IE handles padding differently to regular browsers.
I dont think it is the box hack. There are just lots of spaces in between text when the page loads in IE
I took a quick look and it appears that you have many empty paragraph <p> tags throughout the page. FireFox is ignoring the empty paragraphs and IE is rendering the HTML. Just a thought.
this happens when you assign an object both width and padding at the same time. for example: <div style="width:200px; padding:10px;">content</div> ie renders this code and sets a div with width 200px, on the other hand firefox assigns 220px value. (it adds padding-left and padding-right) the easy way to escape this ambiguity is using two different divs, like <div style="width:200px;"><div style=" padding:10px;">content</div></div>