小编Ter*_*tek的帖子

在不破坏号码的情况下禁用网站上的Skype电话号码链接的新方法?

我在网页上禁用Skype图标/链接的旧方法(我在本网站上找到)似乎不再起作用.

我试过了:1.将它添加到头部:

<meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
Run Code Online (Sandbox Code Playgroud)

2.

span.skype_pnh_container {display:none !important;}
span.skype_pnh_print_container {display:inline !important;}
Run Code Online (Sandbox Code Playgroud)

3.添加这些CSS规则:

span[class^='skype_pnh_container'] {display:none !important;}
span[class^='skype_pnh_print_container'] {display:inline !important;}
Run Code Online (Sandbox Code Playgroud)

似乎没有人对我有用了.

我不想使用span标签来打破电话号码,因为它无法在设备上点击.

如果有人知道截至2013年10月禁用样式的新方法,我将非常感激.谢谢,

html css skype hyperlink phone-number

10
推荐指数
1
解决办法
8651
查看次数

Outlook 2013仅HTML电子邮件中的图像差距

我只在Outlook 2013中遇到HTML电子邮件问题,在2007年和2010年的早期版本中看起来很棒.

我添加了style ="display:block;我的表和td有一个黑色的背景颜色.我尝试在td上指定宽度和高度以及img和一个line-height样式,如前面的帖子所示,包含td .

这是代码:

<table width="200" cellpadding="0" cellspacing="0" align="right" bgcolor="#000000"><tr><td width="156" height="158" style="background-color:#000000; line-height:13px;"><img src="http://identifix.skmgroupwork.com/email/iden074/images/JerryGTruglia.jpg" width="156" height="158" align="right" alt="Jerry G Truglia" style="padding: 0px 20px 0px 0px; width: 156px; height: 158px;display:block;"></td></tr></table>
Run Code Online (Sandbox Code Playgroud)

包含代码:

<table width="510" align="center" cellpadding="0" cellspacing="0" style="" bgcolor="#000000">
            <tbody>
                <tr>
                    <td colspan="2" align="left" valign="top" style="font-family: Arial, Helvetica, sans-serif; color: #ffffff; font-size: 12px; line-height: 20px; padding: 0px 30px 0px 40px; ">
                    <table width="180" cellpadding="0" cellspacing="0" align="right" bgcolor="#000000"><tr><td width="156" height="168" style="background-color:#000000; line-height:13px;"><img src="http://identifix.skmgroupwork.com/email/iden074/images/JerryGTruglia.jpg" width="156" height="158" align="right" alt="Jerry G Truglia" style="padding: …
Run Code Online (Sandbox Code Playgroud)

html email image outlook-2013

2
推荐指数
1
解决办法
5073
查看次数

Twitter-Bootstrap respond.js不适用于IE8

我仍然遇到一些问题,让我的Twitter-Bootstrap页面在IE8中正确显示桌面视图.我一直在这里关注一些线索,但投票的建议对我不起作用.

使用建议的元标记

<meta http-equiv="X-UA-Compatible" content="IE=edge">
Run Code Online (Sandbox Code Playgroud)

包含本地版本的bootstrap.css,html5shiv.js,respond.js,ie8-responsive-file-warning.js

这是我的头部分:

<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="SunTrust Equity Line Options">
<meta name="author" content="">
<link rel="shortcut icon" href="favicon.ico">

<title>SunTrust &ndash; Your Equity Line is Maturing. What are your options?</title>

<!-- Bootstrap core CSS -->
<link href="dist/css/bootstrap.css" rel="stylesheet">

<!-- Just for debugging purposes. Don't actually copy this line! -->
<!--[if lt IE 9]><script src="dis/js/ie8-responsive-file-warning.js"></script><![endif]-->

<!-- HTML5 shim and Respond.js IE8 support of HTML5 …
Run Code Online (Sandbox Code Playgroud)

javascript css jquery internet-explorer-8 twitter-bootstrap

2
推荐指数
1
解决办法
7569
查看次数