I have implemented the toolbox theme on my WordPress website. Below is the code snippet I am using to display the title of each post on the blog page within an h1 tag:
<h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'toolbox' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
Although the titles are showing up correctly, I am having issues with customizing their appearance using CSS. Despite applying a color change in the CSS code, the titles still appear blue:
.entry-title {color:#000;}
In addition, there is a mysterious blue underline beneath the titles that I would like to remove.
Here is the HTML output of the page where the title is displayed:
<header class="entry-header">
<h1 class="entry-title">
<a rel="bookmark" title="Permalink to Haley Joel Osment to Try Acting As a Grown Up in New…" href="http://localhost/wordpress/featured/haley-joel-osment-to-try-acting-as-a-grown-up-in-new-6/">Haley Joel Osment to Try Acting As a Grown Up in New…</a>
</h1>
<div class="entry-meta">
</header>