Community > Discussions
23 views
2 replies

Changing width of default Tooltips

Hi,

Can you change the default size of the default live tooltip width anywhere? I can see the ability to change the position, but not the size? In my case I would like to make the tooltip twice the current width. Thanks.

Cheers,
Trevor.

Trevor Smith Trevor Smith
Published 09/09/2019 01:52
Add Comment
Trevor Smith

Hi,

Thanks for your quick reply and solution. It worked well... exactly what I was looking for.

Cheers,
Trevor.

replied 09/09/2019 21:22
Ashish Pachori

You will have to add your custom CSS to implement it. See https://www.mandeeps.com/support/knowledgebase/create-a-new-style and change max-width in below class

.qtip{
    position: absolute;
    left: -28000px;
    top: -28000px;
    display: none;

    max-width: 280px;
    min-width: 50px;

    font-size: 10.5px;
    line-height: 12px;

    direction: ltr;

    box-shadow: none;
    padding: 0;
}

replied 09/09/2019 12:59

Last Activity 09/09/2019 21:22