I’m sorry for create two threads one after another.
How can I fix that ?
It works very smoothly here.
I’m sorry for create two threads one after another.
How can I fix that ?
It works very smoothly here.
I found this CSS that I think it causing the problem. The white-space
property controls line breaks.
If we highlight things with .main-link .top-row
, it looks like this is used to make sure the topic titles stay inside their area:
When the tooltip is created, it is a “child” of the title, so it automatically uses the same styles unless changed.
So, to fix it we need to add some new CSS to change the white-space
property for the tooltip:
.main-link .top-row .d-tooltip {
white-space: normal;
}
Thank you for spending your valuable time helping me.
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.