kaieivindm
Well-Known Member
Have this "undefined" text over my new post bubble after upgrading to 1.5.7.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
That would be unique to your style, bad phrase I used I suppose...
your admin is locked out but search for: visitorNewPosts
It's possible that I set a tooltip class on it, but didn't set a title, can you post that entire little <li> </li> that you find it in?
<li class="navTab visitorNewPosts PopupClosed">
<a href="{xen:link find-new/posts}" class="navLink Tooltip"><i class="fa fa-comments fa-fw"></i> <span class="xbVisitorText">{xen:phrase new_posts}</span></a>
</li>
<li class="navTab visitorNewPosts PopupClosed">
<a href="{xen:link find-new/posts}" class="navLink Tooltip" Title="{xen:phrase new_posts}"><i class="fa fa-comments fa-fw"></i> <span class="xbVisitorText">{xen:phrase new_posts}</span></a>
</li>
Yep so that's my fault on your style, you can either:
Remove the class Tooltip, or add an actual title to it:
Code:<li class="navTab visitorNewPosts PopupClosed"> <a href="{xen:link find-new/posts}" class="navLink Tooltip" Title="{xen:phrase new_posts}"><i class="fa fa-comments fa-fw"></i> <span class="xbVisitorText">{xen:phrase new_posts}</span></a> </li>