Hi,
Just installed your plug in. I like the features so far, but it seems that the text in the comment books are all center aligned. There is probably an easy thing I can do to tweek it, but I can't find the option to change it.
Another issue is that when you choose a floating menu button for an individual comment (like attach image or notify of replies) the resulting text is cut on the right. Here is the link to my page.
Thanks!
Hi @lazytravelers,
Please use the following JS file:
jQuery.each(jQuery('.wpd-comment-right [wpd-tooltip]'), function () {
var pos = jQuery(this).attr('wpd-tooltip-position');
if (!pos || pos === 'top') {
jQuery(this).attr('wpd-tooltip-position', 'left');
}
});
The code should be added in the current active theme JS files.
Then please navigate to the Dashboard > Comments > wpDiscuz > Settings > Styles and Colors admin page, put the following CSS code in the "Custom CSS Code" textarea:
#wpdcom .wpd-comment-right .wpd-comment-text {
text-align: left;
}
In any case please don't forget to delete all caches and press CTRL+F5(twice) on the frontend before checking.