First off, I just want to say that my theme works perfectly for every page except one. The one page in question is the " User management > edit" page. I tried it on two computers and 3 browsers, and the issue is the same. When I open this page the account information section that should be in the middle of the page is pushed all the way to right, and is hidden by the navigation block that is in the proper position.

Someone else posted about this, but it was never resolved. Here is a ScreenS hot of the issue.

http://drupal.org/files/issues/Fruit_FF_Display_Problem.jpg

Here is a link to the theme:
http://drupal.org/project/fruit

Comments

komal.savla’s picture

Hi,
Add this css in your stylesheet and check

#user-profile-form {
  float: left;
}
neralpal’s picture

Thank you soo much. I had to post this a couple of times and I was literally about to login to find a new theme. Luckily, I checked here first.

You saved me a lot of time and frustration. Thank you again.

neralpal’s picture

Hmm alright, So I guess this problem goes a little deeper than I thought.

It seems like everything that is in the right column as far as blocks, sets the margin to the page that the navigation link links to. The user edit link was on the right, hence the problem.

Your fix worked, but now I have another question. Should I edit the CSS file everytime I put a block on the right side, or is there a way I can fix it globally?

Thanks

komal.savla’s picture

Hi,

I have tried to add more blocks on the right-side bar But the css on the user edit form was working properly.
If you are having the same problem on some other pages then you can also add this along with the previous css

.content_box {
  float: left;
  width: 100%;
}

This will globally set the content on the proper place on all the pages.

Thanx.