The title of my blog is in the header image, so how can I remove the title from the top, outside of making the title blank?t
The title of my blog is in the header image, so how can I remove the title from the top, outside of making the title blank?t
If you are using the default theme, open header.php and near the bottom delete the following two lines:
<h1><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
<div class="description"><?php bloginfo('description'); ?></div>
Steve
Thanks a lot. I'm not using the default theme, but that still worked. It's not really a "blog" site--any way I can remove the "Blogroll" category?
EDIT: Rephrasing. I've already removed all the blogroll links, any way I can remove the actual category, though?
Edit your sidebar and comment out (or delete) the function that gets the links.
For example:
<?php get_links_list(); ?>
Is there any way to just remove the one category and keep the others?
Sorry for the slow reply. I'm not aware of any easy way to remove just one category, but you can call the individual categories separately to display the ones you want (not ideal, I know).
This topic has been closed to new replies.