This blog has colorized nested blockquotes now.
test
test
test
test
test
For the colorizing, I used the following CSS code in a plug-in that lets you enter custom CSS. I tried to use a child WordPress theme but was having trouble getting that working.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
blockquote blockquote blockquote blockquote blockquote {
background: #FFA500;
}
blockquote blockquote blockquote blockquote {
background: #FFC0CB;
}
blockquote blockquote blockquote {
background: #ADD8E6;
}
blockquote blockquote {
background: #98FB98;
}
blockquote {
background: #FFF6DB;
font-size: 100%;
}
|
Without setting the font-size to 100%, the blockquotes were larger than my regular text, and I did not want that.
The font-size being set to 100% seems to cascade down to the nested blockquotes, though, so I only had to set it for the first one.