Viewing 5 replies - 1 through 5 (of 5 total)
  • 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)

    Thread Starter andreasdk

    (@andreasdk)

    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?

    Thread Starter andreasdk

    (@andreasdk)

    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.]

    Thread Starter andreasdk

    (@andreasdk)

    #
    <?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

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Strange looking header’ is closed to new replies.