Thread: Image in h1
View Single Post
  #2 (permalink)  
Old Dec 12th, 2006, 20:27
Ryan Fait's Avatar
Ryan Fait Ryan Fait is offline
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Image in h1

Here's the best way to go about it. Using CSS of course. And for reference, you should always have just one h1 tag per page.

Code: Select all
<h1>Your Page Title</h1>
Code: Select all
h1 {
    width: 200px;
    height: 60px;
    margin: 0;
    text-indent: -5000px;
    background: #fff url("logo.jpg") no-repeat 0 0;
    display: block;
}
Reply With Quote