Tagged: 

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #193739

    Is it possible to move the tooltip on the Partner Logo Element from above to below?
    Would appreciate anyones quick help on this.

    Cheers

    #194113

    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

    #614280

    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!

    #614436

    Hi!


    @gabrielsenn
    Can you please post the link to your page where we can see the issue?

    Regards,
    Yigit

    #614444

    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.

    #616096

    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

    #616662

    Hello Ismael. That does the trick! Thank you so much.

    #618046

    Hi,

    Great, glad we could help :-)

    Regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Have Tooltip beneath rather the above?’ is closed to new replies.