Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #362603

    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.

    #362979

    Hey kristenangel!

    Please try adding following code to Quick CSS

    .avia-tooltip {
    max-width: 460px;
    margin-left: 20px;
    }

    Best regards,
    Yigit

    #363875

    Thanks, but I’m still seeing the issue to the left side of the viewport.

    #364684

    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

    • This reply was modified 9 years, 11 months ago by Elliott.
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.