Hello,
I have bbPress installed. When someone visits the post, and returns to the forum, is there a way to make the link change colors so you know which post you have visited?
Thanks for the help.
Hi olivemill!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
a.bbp-forum-title:visited {
color: yellow !important;
}
Best regards,
Yigit
That worked great for the individual forums.
Is there a way to do the same with the topics?
Thanks Again,
Andy
Hey Andy!
Try:
.bbpress a:visited {
color: yellow !important;
}
Regards,
Josue
I got the right code to work. This changes the color of a topic title once visited. It makes it real simple to see which topics have been read.
Thanks for the help.
.bbp-topic-title a:visited {
color: orange !important;
}