When trying to create or edit a node with Firefox 1.5 the fields are all in a jumble at the top. Screenshot attached tells the story. I can look into it tomorrow, just wondering if there's a quick answer.

CommentFileSizeAuthor
spreadfirefox problem.png21.53 KBTimotheos

Comments

nonsie’s picture

It looks like you better check your CSS - that's all.

Mad Maks’s picture

Assigned: Unassigned » Mad Maks

The new lines in the css for solving the white space issues are causing it. You can solve this by removing (line 489)

.node-form .admin,
.node-form .authored,
.node-form .standard {
  clear: none;
}

and (line 822)

.node-form .standard {
  clear: none;
}

this results in a big white space. I am looking for the solution for that.

Mad Maks’s picture

In combination with the beta version of drupal 4.7, there is no problem.

davemybes’s picture

Priority: Critical » Normal

Just come across the same problem with overlapping inputs. I followed the instructions to remove the clear:none's, which left the big white space. So, after some playing around, I finally have a solution that works for me (so far). Add the following style to Layout.css (you can leave or delete the clear:none definitions, I have left mine in):

.node-form .standard {
 position: absolute;
 top: 360px;
}

This works in Firefox 1.5.0.1 with no problems. I'm running Linux, so can't test in IE. The only problem is if you resize your default text size, then the boxes will eventually overlap. You can simply increase your top setting to fix it.

This is probably not the best solution, but it works for now :)

Mad Maks’s picture

Status: Active » Closed (fixed)