Skip to content

Instantly share code, notes, and snippets.

@rumblestrut
Created May 5, 2011 00:26
Show Gist options
  • Select an option

  • Save rumblestrut/956309 to your computer and use it in GitHub Desktop.

Select an option

Save rumblestrut/956309 to your computer and use it in GitHub Desktop.
Drupal gap fix for browsers
It looks like Firefox (and presumably, other browsers) are not liking the display: block; CSS in your modules/system/defaults.css on line 51.
Let's not modify core CSS files, but instead add this to your theme's CSS:
.node.clear-block {
display: inline-block !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment