Project:Editview
Version:5.x-0.1
Component:User interface
Category:bug report
Priority:normal
Assigned:Unassigned
Status:active

Issue Summary

IE 7 has formatting problems when using Editview's editview-Table.
The "Title" field "pushes" all other fields to the right leaving a wide blank column between it and the fields that follow.
This does not happen on any other browser. Firefox in Windows delivers correct page rendering and all the GNU/Linux browsers I have tested work fine.
Is this a Microsoft issue?

Comments

#1

So far it looks like it's just an IE7 issue. It's one thing to debug for IE6 & 7, but it's another to debug for just IE7. Not sure I've ever done that before. If I figure anything out then I'll post it here.

#2

Not even 5 minutes later and I found a solution. Not sure why it's this way but I changed the following in the editview.css file from:

.editview-field input {
  max-width: 30ex;
  _width: 30ex;
}

.editview-field input {
  max-width: 140px;
  _width: 140px; <---- not sure why this is here, but I left it anyway!
  width: 140px;
}

My site is fixed width though so you may want to go with something like 30% or something. Report back...