Make title not showing:
Go to dashboard -> appearance -> editor
Open header.php
find this code
<header>
<h1><a href="<?php echo home_url(); ?>"><?php echo get_bloginfo('name'); ?></a></h1>
<span></span>
<p><?php echo get_bloginfo('description', 'display'); ?></p>
<?php get_sidebar('left'); ?>
<?php get_sidebar('right'); ?>
<div class="clear"></div>
</header>
then delete this code
<h1><a href="<?php echo home_url(); ?>"><?php echo get_bloginfo('name'); ?></a></h1>
<span></span>
<p><?php echo get_bloginfo('description', 'display'); ?></p>
Change font color
Open style.css
To change a blue color:
find this code with Control+F
/* --- Link --- */
#content h2 a {
color:#468ACA;
}
a, #content h2 a:hover{
text-decoration:none;
}
a:hover {
text-decoration:underline;
}
/* --- Link Colors --- */
a, ul.sidebar li.widget_text a {
color:#468ACA;
}
and changes 468ACA with color code that you want.
—
Please remark this question as resolved if you enough for my answer and rate our theme.
Thanks,
Malvouz