@Asti,
You're a genius! Thank you.
We made some minor adjustments to make sure the tooltips are not truncated when viewed on mobile devices. Details below.
Again, thanks a million.
Cheers!
--------------------------
For Standard Desktop Screens:
#wpd-threads .wpd-vote [wpd-tooltip]::after {
margin-left: 0px !important;
padding: 5px 0px !important;
min-width: 4vw !important;
}
For Mobile Device Screens:
@media only screen and (max-width: 640px) {
#wpd-threads .wpd-vote [wpd-tooltip]::after {
margin-left: 9px !important;
padding: 5px 8px !important;
min-width: 4vw !important;}
}
This particular CSS Code is for the Comment Link located on the right side of comment form:
@media only screen and (max-width: 640px) {
#wpd-threads .wpd-comment-link [wpd-tooltip]::after {
left:-185%!important;
margin-left:0px!important;}
}