• Resolved smadison

    (@smadison)


    How do I hide the header for custom community wordpress theme?
    By default the header for custom community wordpress theme is the title “custom community” and then a HUGE grey ( : <- symbol next to it. When it add my logo and other header information it doesnt go away it just hides behind my logo and peeks out at the edges. How can I completely get rid of this?

    My website is obviouslyfrugal.com

Viewing 9 replies - 1 through 9 (of 9 total)
  • 1. Edit the CSS

    #text-3 ,#logo {
    display:none !important;
    }
    #header {
    background:none !important;
    }

    This is just a start but edits to the html should be made if you want to do it right

    forget the #logo and text-3 and just modify the style.css and delete

    background: url("http://obviouslyfrugal.com/wp-content/themes/custom-community/images/default-header.png") no-repeat scroll 0 0 transparent;

    Under

    #header

    Thread Starter smadison

    (@smadison)

    Thanks so much! I really appreciate your help.

    Thread Starter smadison

    (@smadison)

    After doing the #text-3 ,#logo {
    display:none !important;
    }
    #header {
    background:none !important;
    }
    It doesnt allow me to use my own logo. I tried just modifying the style.css but there is no section where it has background: url(“http://obviouslyfrugal.com/wp-content/themes/custom-community/images/default-header.png&#8221;) no-repeat scroll 0 0 transparent;
    I am also not able to use some of the header widgets like “header center” and the space between the widgets and my navigation bar is quite large and noticable. I would still like to be able to use my own logo. I just do not like the custom community theme’s design in the header area.

    Is there anything else I cant try?

    In the admin theme settings you could try simply decreasing the header size untill it disappears, provided you already typed “none” into the header image field. I never tried using the logo, may present other issues I’m not aware of.

    The way I did it was too. Delete all of the following in header.php ( This also gets rid of the menu which is what I wanted)

    <div id="access">
    <div class="menu">
    <?php do_action('bp_menu') ?>
    <?php /* Our navigation menu.  If one isn't filled out, wp_nav_menu falls back to wp_page_menu.  The menu assiged to the primary position is the one used.  If none is assigned, the menu with the lowest ID is used.  */ ?>
    <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary','container' => '' ) ); ?>
    </div>
    </div>

    [Please post code or markup snippets between backticks or use the code button.]

    See example. Cheers

    to remove the default CC logos on custom community just upload your own header back ground image. in theme settings / header / header background image.

    if you wish to not have a header background image. use a clear pixel gif image. set the background to repeate.

    please remove all the code edits from the above comments as other functions of your theme will fail to work.

    to remove the menu from its default location
    div#access{display:none;} in your css tab of the theme would remove it with out editing the code. as the theme update would remove your edits. the css will not.

    For the header image, You can also type “none” into the header image field. I didn’t need to use a clear gif.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘How do I hide the header design for custom community wordpress theme?’ is closed to new replies.