tags:

views:

28

answers:

1

Using Drupal: When I click on button "Save" to save the changes to a page, the top of the back-end is immediately removed, and all the content is shifted up for some reason..

How can I fix this?

+1  A: 

This sounds like some JavaScript code going haywire, attaching a handler to the form submit while it shouldn't. You should try to use the form with JavaScript disabled in the browser - if the behavior does not occur then, you need to check which JavaScript code is responsible for it. (Possibly some sloppy code from a contributed module - you can also turn off all contributed modules to see if this changes the behavior - if it does, turn them back on one by one to find the offender.)

Henrik Opel

related questions