Hello,
The tooltips that appear when a user rolls over a logo in the logo grid shortcode runs off the side of the page. I fixed this issue on the right side of the viewport by adding the following:
.avia-tooltip {
width:auto !important;
margin-left:0px; /*trying to fix left side, but not working */
}
But for some reason, it’s not working on the left side and the text runs off the page.
Thanks for your help.
Hey kristenangel!
Please try adding following code to Quick CSS
.avia-tooltip {
max-width: 460px;
margin-left: 20px;
}
Best regards,
Yigit
Thanks, but I’m still seeing the issue to the left side of the viewport.
Hey!
You can try reducing it’s width a bit more.
@media only screen and (max-width: 479px) {
.avia-tooltip {
max-width: 260px !important;
}
}
Though it’s looking fine on my end.
Regards,
Elliott