MyBB Community Forums

Full Version: How do I change the textcolor in the plugin Thank You/Like System (3.3.2).
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I change the textcolor in the plugin Thank You/Like System (3.3.2).
By installing the text: "x user Likes x's post" is white.
In the setting or css there is no way to change this color (only backgroundcolors0
You need to change your board URL in ACP - Configuration to https.

A link to a thread will help or post in plugin support thread.
Changing the board url does not have any effect.

Its a good idea to post it in the helpforum from this plugin, so I did 4 days ago. I thought with 6 editors of this plugin I will get an answer in 2 days. But no reaction. Perhaps I am a bit to impations.
to change text color you have to specify:

color: #fff;

or

color: #000;

in css

So with this plugin you can try experimenting with:

.tyllist {
    background-color: #f5f5f5;
    border-top: 1px dotted #ccc;
    border-bottom: 1px dotted #ccc;
    padding: 2px 5px;
}

something like this:

.tyllist {
    background-color: #f5f5f5;
    border-top: 1px dotted #ccc;
    border-bottom: 1px dotted #ccc;
    padding: 2px 5px;
color: #fff;
}
Does not work
you made changes and hard refreshed the browser cache afterward ? CTRL + F5
thanks a lot, I restore all setting from M-Edge and now it works.