Reputation: 1335
im trying to fix a bad website, there was alot of differences between chrome, mozilla, ie and opera,
after much work, came to this: http://www.israelnumber.com/new1/default.asp
BUT
on ie, when going over: products->numbers, theres a small space between the link below, and the menu on the right.
any thoughts why?
Upvotes: 3
Views: 228
Reputation: 15160
You will never get IE to attempt to perform like the other far more modern browsers without a proper doctype. Add this to your first line:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
Then validate your html and css for those lists of errors.
Upvotes: 3
Reputation: 73
It seems to me that it's an issue with the background image of the drop down menu, if you look closely you'll see that it has a 1px clipping of what seems to be the main banner image, remove this and it should fix it.
Upvotes: 0