Yes you can remove them.
Should be in the theme’s Header.php
Look for the code that has:
bloginfo(‘description’)
bloginfo(‘name’)
Remove the html/css tags as well for them (only)
I have just tried fiddling with the header.php but i cannot seem to find the right place.
Can you please tell me what it is I need to remove?
Sorry about that….
Header.php file:
[Large code excerpt removed by moderator. Per forum rules, please use the pastebin for all large code excerpts. It works better anyway.]
#
<?php
#
// unless we chose to hide the blogname
#
if (!$mandigo_options['header_blogname_hide']) {
#
?>
#
<<?php echo $tag_blogname; ?> class="blogname" id="blogname"><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></<?php echo $tag_blogname; ?>>
#
<?php
#
}
#
#
#
#
// if blog description is set and unless we chose to hide it
#
if (!$mandigo_options['header_blogdesc_hide'] && get_bloginfo('description')) {
#
?>
#
<<?php echo $tag_blogdesc; ?> class="blogdesc" id="blogdesc"><?php bloginfo('description'); ?></<?php echo $tag_blogdesc; ?>>
#
<?php
#
}
#
#
#
#
// this is the top navigation:
#
// the first <li> tag is the link to the homepage
#
?>
Remove this code