See if each reply has an alternating background color?
This makes forum easier to understand who replied.
Here is a sample of this idea:
See if each reply has an alternating background color?
This makes forum easier to understand who replied.
Here is a sample of this idea:
It seems to be an even - odd color
~ Been a turbulent juicer since '87 ~
~ Never go back to being an unmuscular Michael ~
You can do it by adding this code in the Custom CSS:
.posts > .post:nth-child(2n+1) {
background-color: rgba(217, 217, 217, 0.24);
}
~ Been a turbulent juicer since '87 ~
~ Never go back to being an unmuscular Michael ~
So Cool! Thank you are talented!
So I added a second set of that code like this to do the alternate posts:
.posts > .post:nth-child(2n+2) {
background-color: rgba(215, 215, 215, 0.44);
}