Both themes, BranfordMagazine and WyntonMagazine have a graphical Logo by default. Nomaly you have to change that to meet your sites requirements and branding. I was often asked how to do that so this tutorial shows you how. This tutorial is only for themes versions before BranfordMagazine 5.1 and WyntonMagazine 2.1 because as of these versions the custom headerimage can be handled from the admin backend.
The logo in both themes is cales bg_branding.png and is located in the /images/bachgrounds subfolder of the themes directory. You can use this file and chage it to meet your needs or – even better – you use the PSD File contained in the /stuff folder in the downloaded ZIP-archive.
Just open this file and change the defaults or remove everything and create your own logo. Just make sure you keep the dimensions. If you want to change the dimensions you will need to edit the CSS settings in style.css. In branfordMagazine it looks like this in line 241.
width:625px;
height:100px;
padding-bottom:15px;
background:url(images/backgrounds/bg_branding.png) no-repeat;
}
I don´t reccomend to make it larger than 625px since that might cause the searchfield in the header to move down and break the layout. If you want to have a larger header image (logo) I reccomend to remove the searchfield completely from the header by deleting this lines in header.php (BranfordMagazine).
<?php include (TEMPLATEPATH . ‘/searchform.php’); ?>
</div>
Or the according lines in header.php of WyntonMagazine.
After you have changed it upload it to your server and you are done.