Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How Do I Do This?


chrishajer
Participant

@chrishajer

In header.php, in the header div (where the login_form() is) put this:

<img id=”headerlogo” src=”http://www.theangrywaiter.com/wordpress/wp-content/uploads/awbanner.jpg&#8221; alt=”The Angry Waiter” />

Right now though, the image is taller than the header div (the header is 106px, the image is 131px, I think.)

So, to make it all work, you’ll need to make the header div taller, or the image less tall. Then you’ll need to apply some styling to the image you just placed in the header. Something like this:

#header img {
whatever: here;
}

That just gets the image into the header. Then you need to wrap an <a href="http://www.theangrywaiter.com/" alt="go home"></a> around that image tag you just added, to link the image to the destination.

Skip to toolbar