Y T Nuke  
Results 1 to 3 of 3
Hi guys, I am trying to add a logo to my site but I dono ...
  1. #1
    the dopant is offline Newbies
    Join Date
    Nov 2009
    Posts
    37
    Reputation
    10
    Thanks
    39
    Thanked 1 Time in 1 Post

    Default How to add a logo to Slick 1.14 WP theme header ?

    Hi guys,

    I am trying to add a logo to my site but I dono how to edit the header.php file to do so. I would appreciate it if someone could guide me through the process. I checked google and there were few links which changed header image on other themes, but they went over my head completely..
    PHP Code:
    <div id="header">

        <div id="headerimg">
            <?
            
    if(is_home()) {
            
    ?>
                <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
            <?
            
    } else {
            
    ?>
                <div id="h1"><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></div>
            <?
            
    }
            
    ?>
            <div class="description"><?php bloginfo('description'); ?></div>
        </div>
        
    </div>
    Thanks for ur time.

  2. #2
    mcc777 is offline Registered Member
    Join Date
    Jul 2011
    Location
    Ohio
    Posts
    50
    Reputation
    18
    Thanks
    22
    Thanked 22 Times in 15 Posts

    Default Re: How to add a logo to Slick 1.14 WP theme header ?

    Try this:

    Code:
    <div id="headerimg">
    		<?
    		if(is_home()) {
    		?>
    			<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?><img src="URL TO THE LOGO IMAGE HERE" border="0"></a></h1>
    		<?
    		} else {
    		?>
    			<div id="h1"><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></div>
    		<?
    		}
    		?>
    		<div class="description"><?php bloginfo('description'); ?></div>
    	</div>
        
    </div>
    if you don't want the blog name to show up (but only the logo), delete the code in the above or remove all the data by going to your WP dashboard and under "Settings" >> General clear "Site Title" and "Tag Line" fields then save the changes.
    Last edited by mcc777; 01-18-2012 at 12:11 PM. Reason: add more info

  3. #3
    the dopant is offline Newbies
    Join Date
    Nov 2009
    Posts
    37
    Reputation
    10
    Thanks
    39
    Thanked 1 Time in 1 Post

    Default Re: How to add a logo to Slick 1.14 WP theme header ?

    When I did this.. my entire site's width widened with my content aligned to the cnter. I am looking to put the logo above the title and site description... thanks mcc777. appreciate it mate

AdStract


Advertise on Black Hat World

Similar Threads

  1. Help Me Add Adsense On Wordpress Header
    By Zion7 in forum Adsense
    Replies: 4
    Last Post: 04-04-2012, 08:58 PM
  2. Replies: 6
    Last Post: 12-24-2010, 04:36 PM
  3. how to add link on wp header?
    By bleach in forum Blogging
    Replies: 2
    Last Post: 05-31-2009, 07:38 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
  SEnukeX SEO Software
Proudly Powered by Hostwinds.com Web Hosting Click Here For Exclusive BHW Discounts!

Cheap Web Hosting


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76