【发布时间】:2013-10-13 12:41:29
【问题描述】:
目前在我的页面上,博客文章都有白色文本,这正是我想要的。当我从主站点点击进入特定博客帖子的帖子时,标题颜色和链接颜色会发生变化(参见链接)。我的网站已上线,需要帮助确定是否可以修复此问题..
我该如何解决这个问题,让它们像在主博客滚动页面上一样保持白色......
示例:
主要:www.trinitybeats.com
具体发帖:http://www.trinitybeats.com/archie-horizon-original-mix/(注意标题颜色和链接颜色)
以下是博客格式的特定代码:
<div class="hentry-inner">
<div class="entry-wrapper grids">
<?php get_template_part('content', 'meta'); ?>
<div class="entry-content grid-10 clearfix">
<h2 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'stag'), get_the_title()); ?>"> <?php the_title(); ?></a></h2>
<?php
if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
the_post_thumbnail();
}
the_content(__('Continue Reading', 'stag'));
wp_link_pages(array('before' => '<p><strong>'.__('Pages:', 'stag').'</strong> ', 'after' => '</p>', 'next_or_number' => 'number'));
$embed = get_post_meta(get_the_ID(), '_stag_audio_embed', true);
if(!empty($embed)){
echo do_shortcode(htmlspecialchars_decode($embed));
}else{
stag_audio_player(get_the_ID());
}
?>
</div>
<span class="bottom-accent"></span>
</div>
我可以修复这段代码中的任何内容以在进入特定博客页面时保持字体颜色为白色?
谢谢!
【问题讨论】:
-
在 Wordpress 设置中的某个位置,您应该会找到一些以 .css 结尾的 CSS 文件。然后,阅读悬停和链接状态样式w3schools.com/css/css_link.asp
标签: html wordpress formatting format blogs