在我的源代码中,我有以下代码:
<style>
/*Twenty Twelve fixes and other theme fixes and styles :( */
.flex-caption {
background: #000;
-ms filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000);
zoom: 1;
}
/*...*/
</style>
这不在我的个人 CSS 文件中,我不知道这是从哪里提取的。
我根据 Wordpress Codex 链接到我的外部 CSS 文件,以包含如下样式表:
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" />
我需要怎么做才能删除这个 CSS?
编辑*
现在已经解决了这个问题。