When printing a topic, the quote block cite time is on the the wrong side of the quote block, see screen shot.
This can be solved by adding a rule to the print.css file to match the one in the content.css file.
File:
print.css
|
Find:
.quote-by, blockquote cite {
|
color: black;
|
display: block;
|
font-weight: bold;
|
}
|
Add Below:
blockquote cite > span {
|
float: right; |
}
|