Search Form to the upper left of page at www.Polis-RealEstate.eu appear normal in ie7 but not normal in Safari(win) or Opera(expecially when you press the "Buy" radio button) ... well, how to correct ?
Search Form to the upper left of page at www.Polis-RealEstate.eu appear normal in ie7 but not normal in Safari(win) or Opera(expecially when you press the "Buy" radio button) ... well, how to correct ?
The problem is that you specify two table rows to be displayed inline:
Remove those.Code:... <tr id="rent" style="display:inline;"> ... <tr id="rent1" style="display:inline;"> ...
Same goes for theshowRowfunction:
You should set theCode:// ... document.getElementById(sRow).style.display = 'inline'; document.getElementById(sRow + "1").style.display = 'inline'; // ...displayproperty to an empty string instead.
Can you give me please, samples of correct code ?
Can you give me please, samples of correct code ?
Basically you just have to remove everything highlighted in red in my previous post.
Just find and replace.Code:... document.getElementById(sRow).style.display = ''; document.getElementById(sRow + "1").style.display = ''; ... <tr id="rent"> ... <tr id="rent1"> ...
It will still work in ie7 hence unmodified work in ie7 ...?
Bookmarks