Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #25086

    I’ve got two pretty small problems with the Team Members part of the builder.

    1. Tooltips hover with sentences break to several lines because of the width, but when I have a tooltip with an e-mail address (which is one line) the box doesn’t follow the text. The text displays, but you can’t really see what it says because the background color box stops at a certain width. Is there any workaround for this?

    2. Also, is it possible to do a mailto: in the link field. I haven’t managed to figure out how.

    Thank you for a great theme btw :)

    #125728

    Hi!

    1) Can you post a link to the page with the tooltip please? I’ll investigate the css code and provide a fix.

    2) Yes, just use mailto: instead of http://

    Best regards,

    Peter

    #125729

    Thanks :)

    http://digitalfabrikken.no/om-oss/

    I’d also like to ask if you know how to fix this Notice (screenshot) when someone enters from the Facebook app?

    http://uppix.com/f-bilde51c7f8ea0013317a.png

    #125730

    Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    .avia-tooltip{
    width: auto;
    }

    I’ll tag Peter on the facebook function issue as I’m not sure what that could be.

    Regards,

    Devin

    #125731

    Thanks Devin, that did the trick :)

    I’m not sure, but I think maybe the facebook function issue has got something to do with the theme trying to find the browser type/version. If this is the case it won’t find facebook obviously, because it’s not a browser in that sense…?

    #125732

    Please open up wp-contentthemesenfoldframeworkphpfunction-set-avia-frontend.php and replace:

    if ($i != 1) {
    //we will have two since we are not using 'other' argument yet
    //see if version is before or after the name
    if (strripos($u_agent,"Version") < strripos($u_agent,$ub)){
    $version= $matches['version'][0];
    }
    else {
    $version= $matches['version'][1];
    }
    }
    else {
    $version= $matches['version'][0];
    }

    with

    if ($i != 1)
    {
    //we will have two since we are not using 'other' argument yet
    //see if version is before or after the name
    if (strripos($u_agent,"Version") < strripos($u_agent,$ub))
    {
    $version = !empty($matches['version'][0]) ? $matches['version'][0] : '';
    }
    else
    {
    $version = !empty($matches['version'][1]) ? $matches['version'][1] : '';
    }
    }
    else
    {
    $version = !empty($matches['version'][0]) ? $matches['version'][0] : '';
    }

    #125733

    Thank you :)

    That worked perfectly, thanks for your help and great support :)

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Oneliner Tooltip cuts background on text in team members’ is closed to new replies.