When displaying my FAQ page ( http://www.rp-haven.com/faq ) I'm seeing a huge empty space which appears to end at the bottom of my lowest blow (either left hand or right hand side blocks). Looking at the /div information, I'm seeing that it is a div called ".clear-block" that seems to be causing the white space. Problem is, I can't for the life of my figure out how to fix it.

Frequently Asked Questions Settings (though the issue appears on all of them):

Page layout: Clicking on question opens/hides answer under question
Categories layout: Inline

Any clues?

Comments

stella’s picture

Status: Active » Fixed

I imagine this is something to do with your theme because it doesn't happen for me with garland or 12 other themes I tried it with. Removing this from the code causes problems with the layout when using taxonomy images (questions appear beside image, instead of underneath).

Because I believe this to be a theme issue, I think the best solution is to override the default behaviour of a "clear-block" div for faq layouts using css. Something like the following should do the trick:

div.faq_category_group div.clear-block {
  display: none;
}

In this instance the "clear-block" div, is within the "faq_category_group" div - i'm specifying the parent div so it doesn't affect other "clear-block" divs that appear elsewhere on the site.

Just add the above code to your theme's style.css file and let me know how you get on.

Cheers,
Stella

noctifer’s picture

This did the trick, thank you!

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.