Tagged: hover, team, team members, tooltip, width
-
AuthorPosts
-
June 20, 2013 at 9:48 am #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 :)
June 22, 2013 at 6:54 am #125728Hi!
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
June 24, 2013 at 7:37 am #125729Thanks :)
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?
June 24, 2013 at 6:48 pm #125730Try 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
June 25, 2013 at 11:46 am #125731Thanks 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…?
June 26, 2013 at 8:31 am #125732Please 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] : '';
}June 26, 2013 at 10:49 am #125733Thank you :)
That worked perfectly, thanks for your help and great support :)
-
AuthorPosts
- The topic ‘Oneliner Tooltip cuts background on text in team members’ is closed to new replies.