html - Need to change formatting of font color within wordpress blog post -
on page blog posts have white text, want. when click post main site specific blog post, title color , link color change(see links). site live , need figuring out if can fixed..
how fix remain white on main blog roll page…
example:
main: www.trinitybeats.com
specific posting: http://www.trinitybeats.com/archie-horizon-original-mix/ (notice title color , link color)
here code specific blog formatting:
<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 %s', 'stag'), get_the_title()); ?>"> <?php the_title(); ?></a></h2> <?php if ( has_post_thumbnail() ) { // check if post has post thumbnail assigned 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>
is there within code can fix keep font color white when going specific blog page?
thank you!
your problem hs nothing wordpress, rather css issue ..
you can add following code snippet in theme's style.css hope work ..
.entry-title { color:#ffffff!important; } .entry-title a:active { color:#ffffff!important; } .entry-title a:focus { color:#ffffff!important; }
for link part on line no 129 replace piece of code :
.single-format-audio .entry-content { border-bottom: 1px solid #ffffff; }
with this
.single-format-audio .entry-content { border-bottom: 1px solid #ffffff; color:white!important; }
Comments
Post a Comment