The effects of alcohol on sustanon 250 leucine for – real weight loss & bodybuilding benefits?
Share:
Notifications
Clear all

[Solved] Tooltips cut off

10 Posts
2 Users
0 Likes
983 Views
Posts: 49
Topic starter
(@hannes)
Trusted Member
Joined: 4 years ago

Hi,

I noticed that after the update the tooltips for pic upload and settings button are cut off by the container when the width falls below a certain value: 

tooltip bug

Do you have a fix for this?

Johannes

9 Replies
Asti
Posts: 7114
 Asti
Support
(@asti)
Illustrious Member
Joined: 6 years ago

Hi @hannes,

This is just a small CSS conflict with the theme or other plugins. We'll need some example URL to debug the conflict and provide a solution for you.

Posts: 49
Topic starter
(@hannes)
Trusted Member
Joined: 4 years ago

Yeah, I thought it might be. Probably with the container that is added around the comments bits. My blog hasn't launched yet, so is not available publicly. Can I send you the login data?

Regards

Johannes

1 Reply
Asti
 Asti
Support
(@asti)
Joined: 6 years ago

Illustrious Member
Posts: 7114

 sure, @hannes,

send it to info[at]gvectors.com email address. Just leave the email subject here to allow us to easily find it.

Posts: 49
Topic starter
(@hannes)
Trusted Member
Joined: 4 years ago

Okay, I send an email with the subject "Help with cut-off tooltips"

Johannes

1 Reply
Asti
 Asti
Support
(@asti)
Joined: 6 years ago

Illustrious Member
Posts: 7114

@hannes,

This CSS code should help you to solve the issue. 

#wpd-threads [wpd-tooltip]::after {
margin-left: 15px;
left: 89%;
}
Posts: 49
Topic starter
(@hannes)
Trusted Member
Joined: 4 years ago

Thanks, the pic upload tooltip is still cut off though. 

Asti
Posts: 7114
 Asti
Support
(@asti)
Illustrious Member
Joined: 6 years ago
Posted by: @hannes

Thanks, the pic upload tooltip is still cut off though. 

Please leave a screenshot. 

Posts: 49
Topic starter
(@hannes)
Trusted Member
Joined: 4 years ago
tooltip
1 Reply
Asti
 Asti
Support
(@asti)
Joined: 6 years ago

Illustrious Member
Posts: 7114

@hannes,

Remove the code provided in the previous post and use this one:

@media screen and (max-width: 600px){
.wpd-editor-buttons-right [wpd-tooltip]::after {
left: -75% !important;
}

#wpd-threads [wpd-tooltip]::after {
margin-left: 15px;
left: 89%;
}
}
Share: