Posted by Brad Beattie on September 19, 2008 at 4:47pm
Jump to:
| Project: | Style (CSS) Settings |
| Version: | 6.x-1.3 |
| Component: | User interface |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (works as designed) |
Issue Summary
div.picture runs into other content, possibly creating unusual side effects. Take a look at the attached screenshot. My user profile runs into the content clear-block div creating issues with how polls look. A proposed patch is to modify modules/system/defaults.css:
.clear-block {
display: inline-block;
}to
.clear-block {
display: inline-block;
clear: both;
}I'm not sure if this has any unintended side effects though, and I gather someone more knowledgeable in Drupal's stylings can propose a better solution it it does.
| Attachment | Size |
|---|---|
| Screenshot-Do you like muffins? | Drupal Sandbox - Mozilla Firefox.png | 99.35 KB |
Comments
#1
Unrelated to style_settings module