Yesterday, I resolved my quote graphic annoyance in my comments; but, after the fix, I did not like the appearance of my now white box within the blue-gray box of other comments—again, CSS to the rescue.
|
|
Added these statements [in blue] to my CSS to clean up the appearance of the white quote in the blue-gray boxes. Of course single comments also have the new borders. Now, if CSS allowed what-if statements. I’m kidding… Click on the left image for a larger view from my earlier article. Clicking on the right image takes you to the comments with the cleanup.
.commentlist li.bypostauthor {
background-color:#fff;
border-left:#ddd 1px solid;
border-bottom:#ddd 1px solid;
}.commentlist li {
background-color:#f3f3f3;
border-left:#ddd 1px solid;
}
Advertisement

