Created
May 5, 2011 00:26
-
-
Save rumblestrut/956309 to your computer and use it in GitHub Desktop.
Drupal gap fix for browsers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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