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
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();?>
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.