Tag Archives: Zen

Drupal 7 – Fix the empty space below the Zen theme Page Bottom region

I was using Drupal Zen theme and found that there was a empty space below the Page Bottom region. To remove that space, try applying the following CSS on the wrapper <div>.

/* Fix the empty space below page bottom */
#page-bottom-wrapper {
  overflow: hidden;
}

Done =)

Reference: zen – Extra Space Below Footer in Drupal 7

Advertisement