Tagged: tooltip
Is it possible to move the tooltip on the Partner Logo Element from above to below?
Would appreciate anyones quick help on this.
Cheers
Hey rezolution!
First open js/avia.js and replace line 1184:
position:'top' //top or bottom
By this:
position:'bottom' //top or bottom
Then add this to the Quick CSS:
.avia-tooltip .avia-arrow-wrap {
bottom: 45px !important;
}
.avia-tooltip .avia-arrow {
top: 15px !important;
}
Regards,
Josue
This is a great tip! Thank you.
Now… What CSS should be edited so that the arrow (little triangle) stays at the top of the tooltip, when the tooltip has more than one line of text?
Here’s what I mean:
Regular one line arrow/triangle on top of tooltip: http://dev2.mediabox.ca/sampleissues/correct.png
Problem with multi-line copy, arrow/triangle stuck in the middle of the tooltip: http://dev2.mediabox.ca/sampleissues/incorrect.png
Thank you in advance!
Hi!
@gabrielsenn Can you please post the link to your page where we can see the issue?
Regards,
Yigit
Sure thing. You can view it here:
If you roll-over the thumbnails in the centre column you’ll see that all is OK, but if you roll-over the thumbnails on either the first or third column, you will see that as soon as the tooltip box has more than one line of text, the little triangle is misaligned.
Hi!
Please add this in the Quick CSS field:
.avia-arrow {
top: 85%;
}
.avia-tooltip .avia-arrow-wrap {
bottom: 100% !important;
top: auto !important;
}
Regards,
Ismael
Hello Ismael. That does the trick! Thank you so much.