Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Clickable WordPress Header in 2.5 Re: Clickable WordPress Header in 2.5

#47295
Onyx
Participant

In your CSS file, you have this code:

Code:
#headerimg {
margin: 7px 9px 0;
height: 192px;
width: 740px;
}

Replace it by:

Code:
#header h1 {
margin: 7px 9px 0;
height: 192px;
width: 740px;
}
#header h1 a {
display:block;
}

You can remove the <div id="headerimg"> from your html file.