KathrynBassett wrote :
Well shoot. The only thing in the css with title is
h2.pagetitle {
font-size: 1.6em;
display: none;
}
and as you see, I added the dsiplay: none; and uploaded it, and put the blog title in options, but as you can see
https://altadenabaptist.org/wordpress/
the display: none; is not working. What next?
h2.pagetitle is nowhere in your header for the blog title to be displayed.
Did you look at your header.php to see where your blogtitle is displayed?
I guess not.
“Page title” is not what you are looking for…
1 – Open header.php in a decent text editor.
2 – find this :
<div id="headerimg">
<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
<div class="description"><?php bloginfo('description'); ?></div>
</div>
3 – And change this for this :
<div id="headerimg">
</div>
So, just delete these two lines :
<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
<div class="description"><?php bloginfo('description'); ?></div>
That’s all. Now, the name oh the blog and the description are no longer in the header.
S.