In version 6.x, the basic HTML structure rendered by the module (by default) is:
<div class="content clear-block">
<div class="quotes-quote">
quote_text
</div>
<div class="quotes-author">
— author_name
</div>
<div class="clear-block"></div>
</div>
Consequently, all of the text within the "quotes-author" div stays within the "content" div. But in version 7.x, even though the code within quotes.module looks similar to that of version 6, the HTML structure that I'm seeing rendered is:
<div class="content">
<div class="content">
quote_text
</div>
<div class="quotes-author">
— author_name
</div>
</div>
Note the two "content" divs, and a lack of a "quotes-quote" div. Perhaps that is what is causing the text within the "quotes-author" div to be pushed below the outer "content" div. Please see the attached image.
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | quotes.png | 9.87 KB | ivan8 |
| Quotes module problem.png | 4.9 KB | mjross |
Comments
Comment #1
ctmattice1 commentedCheck out the latest dev release and see if it fixes it for you
Comment #2
ivan8 commentedI have the same problem with the latest dev version as well.
Comment #3
ctmattice1 commentedShould be fixed in current dev release, marking closed, re-open if you still experience this