There is an issue with presenting some of the content from various modules and views in this template. Take a look at the screenshot... Within the main-content there is a control panel content, but I've noticed that the location of control panel content depends on the maximum height of the content from left/right side-bar...

Comments

jazzitup’s picture

Title: Height problem » The same thing while editing nodes
StatusFileSize
new41.83 KB

The same thing happens while editing nodes....

jazzitup’s picture

Title: The same thing while editing nodes » Height problem: side-bars vs. main-content lineup

This is so annoying... hm! I can't locate the problem even with my DevTool plugin for Firefox.

Steel Rat’s picture

Yeah, there's another issue on this type of problem. It is pretty frustrating.

lafflam’s picture

After reading http://drupal.org/node/25192 and http://drupal.org/node/38426, I studied the style.css file and found the following section:

/*<group=Profile Styles>*/
.profile {
  _position: relative;
  _height: 1%;
  clear: none; /* override drupal.css clear:both which causes whitespace */
}

This gave me the clue I needed to fix the problem.

HOW TO FIX

Add the following code to the style.css file:

.node-form .standard {
  clear: none; /* override drupal.css clear:both which causes whitespace */
}

This fixed the problem for me.

lafflam’s picture

There are other "pages" which also exhibit this behavior, such as the bottom half of the Democratica theme settings page. Therefore I also added the following code to style.css:

.theme-settings-bottom {
  clear: none; /* override drupal.css clear:both which causes whitespace */
}

NOTE: There may be other classes in the stock drupal.css file that need similar overriding by Democratica's style.css file.

Steel Rat’s picture

Nice Lafflam!! These fixed both the FF and IE problems I was having! I owe you my first born!

lafflam’s picture

Retraction of Update #5 above

Update #5 above breaks the general themes settings page in Democratica. I recommend not using the code from Update #5.

Following further testing, Update #4 seems to solve the original problem and continues to work fine.

jazzitup’s picture

StatusFileSize
new40.36 KB

Problem still exists... Did you check: admin/themes/settings?
Take a look at the attached image.