06-01-2023, 03:16 AM
Adding background and padding to blockquote cite:
blockquote cite {
background: #d7ddff;
padding: 5px;
}
helps add some separation in the quote, dunno if that's an improvement or not.
Those two settings just need adding to the full CSS, so it would be:
blockquote cite {
color: #334466;
border-bottom: 1px solid #ccc;
display: block;
padding-bottom: 3px;
margin: 0 0 10px 0;
font-style: normal;
background: #d7ddff;
padding: 5px;
}
That's just a slightly darker version of the quote background, adjust to suit your color scheme.
blockquote cite {
background: #d7ddff;
padding: 5px;
}
helps add some separation in the quote, dunno if that's an improvement or not.
Those two settings just need adding to the full CSS, so it would be:
blockquote cite {
color: #334466;
border-bottom: 1px solid #ccc;
display: block;
padding-bottom: 3px;
margin: 0 0 10px 0;
font-style: normal;
background: #d7ddff;
padding: 5px;
}
That's just a slightly darker version of the quote background, adjust to suit your color scheme.
