我在将 twitter 嵌入到我从 HTML 5 转换的 wordpress 运行网站时遇到问题。
我遇到的问题是推文不在我的自定义字体中......
这是我无法使用任何 css 定位的 HTML 代码,我正在为网站上的所有文本使用通过 css 导入的自定义字体。
<article id="twitter">
<h3>Twitter:</h3>
Test tweet to get embedded code.
<a href="http://twitter.com/Max__Chandler/statuses/202020801917095939" class="aktt_tweet_time">28 mins ago
</a>
</article>
取自 Index.php 的 PHP 代码
<article id="twitter">
<h3>Twitter:</h3><?php aktt_latest_tweet(); ?>
</article>
chrome中显示的css ID是
article#twitter (text)
我尝试定位:#twitter、html、正文、文本、(文本)、“”。
有人启发我如何让这段文本以我选择的字体显示 - 我只想使用 CSS 来保持简单!
网址:
这是使用 CSS 导入字体的方式
@font-face {
font-family: 'JosefinSansStdLight';
src: url('/wp-content/themes/1/JosefinSansStd-Light-webfont.eot');
src: url('/wp-content/themes/1/JosefinSansStd-Light-webfont.eot?#iefix') format('embedded-opentype'),
url('/wp-content/themes/1/JosefinSansStd-Light-webfont.woff') format('woff'),
url('/wp-content/themes/1/JosefinSansStd-Light-webfont.ttf') format('truetype'),
url('/wp-content/themes/1/JosefinSansStd-Light-webfont.svg#JosefinSansStdLight') format('svg');
font-weight: normal;
font-style: normal;
}
p, a, h1, h2, h3, h4, h5, h6{
font:'JosefinSansStdLight';
letter-spacing: 0.1em;
}
a{font:1.25em 'JosefinSansStdLight';}
p{font:1.2em 'JosefinSansStdLight';}
h1{font:3em 'JosefinSansStdLight';}
h2{font:2em 'JosefinSansStdLight';}
h3{font:1.25em 'JosefinSansStdLight';}
h4{font:18px/27px 'JosefinSansStdLight';}
h5{font:18px/27px 'JosefinSansStdLight';}
h6{font:18px/27px 'JosefinSansStdLight';}