• As you can see on this website

    http://man-boob.org

    The header image doesn’t fit inside the header properly. Theme is Busy Bee 1.0.2

    I replaced the default header image with my custom made png file, renamed the old image (exactly) and changed via ftp. Why does t not sit straight?

    Also while i am here – If i click on a category on my site it will show the post as a snippet, how do i set at least 1 post in each category to show the full content?

    Thx

Viewing 5 replies - 1 through 5 (of 5 total)
  • Your image is 132px high but the header is only 118px high. You can shift the image up slightly by changing:

    #header {
    background:transparent url(images/bg_top_gradient.gif) no-repeat 60px 0;
    clear:both;
    height:118px;
    padding-top:25px;
    position:relative;
    width:100%;
    }

    to

    #header {
    background:transparent url(images/bg_top_gradient.gif) no-repeat 60px 0;
    clear:both;
    height:118px;
    position:relative;
    width:100%;
    }

    in style.css

    Thread Starter steve555

    (@steve555)

    you sir, are a legend! ty!

    Any ideas on the category page problem listed above? I’d love 1 full article post to be present in each category as a sticky and any future posts below it to be snippets.

    Mixing the display like that can be a little complex. If you do intend to make at least 1 post sticky in each category, there is a relatively simply way to achieve this. Edit category.php in your theme and look for <?php the_excerpt();?>. Try replacing it with:

    <?php if( is_sticky() ) the_content;
    else the_excerpt();?>
    Thread Starter steve555

    (@steve555)

    There is no category.php

    Here is a list of the files

    * 404 Template (404.php)
    * Archives (archive.php)
    * Archives Page Page Template (template-archives.php)
    * Comments (comments.php)
    * Footer (footer.php)
    * Header (header.php)
    * Image Gallery Page Template (template-imagegallery.php)
    * Main Index Template (index.php)
    * Page Template (page.php)
    * Search Results (search.php)
    * Sidebar (sidebar.php)
    * Single Post (single.php)
    * Sitemap Page Template (template-sitemap.php)
    * Theme Functions (functions.php)
    * admin-options.php (admin-options.php)
    * admin-panel.php (admin-panel.php)
    * admin-setup.php (admin-setup.php)
    * content_ad.php (content_ad.php)
    * custom.php (custom.php)
    * popular.php (popular.php)
    * search-form.php (search-form.php)
    * test.php (test.php)
    * thumb.php (thumb.php)
    * top_ad.php (top_ad.php)
    * widgets.php (widgets.php)

    then style.css

    Make a copy of archive.php, name the copy category.php and then make the changes in the new file.

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

The topic ‘Header Image Messed Up’ is closed to new replies.