Hello,
Am I correct that title should have a white color?
[ Signature moderated ]
That’s right. A normal widget title looks like this:

The widget title above your plugin looks like this:

Thank you for this nice widget by the way. Except for this issue it works like a charm!
-
This reply was modified 9 years, 2 months ago by
Hans Jonkhof.
Hi,
We had investigated issue and the problem is in the not default theme. As I saw, you use masonic theme and there title of sidebar widget builded like
<div class=”widget-title”>
<h3>…</h3>
</div>
but by default it should be (https://codex.wordpress.org/Function_Reference/register_sidebar)
<h2 class=”widget-title”>…</h2>
So, I think the better way to resolve it to add following css to your style file:
h2.widget-title { padding: 10px; margin: 0 0 25px; color: #fff; }
Please let me know how that goes.
Thanks!
Yes, great, that fixed it! Thank you for your quick help!
Ok, you can set resolve this issue and we will be happy for your review.
Thanks!