English « Need Help « Changing the Skeleton theme slightly «
Changing the Skeleton theme slightly
| « Previous | Next » |
Comment inspired from Boen, Jan
Jan: you can mask the regular content and display your image in the background instead. Put something like the following in your CSS file (not tested):
/* mask regular text */
p#header_title a {
display: none;
}
/* use the logo as background */
p#header_title {
background: transparent url('logo.png') no-repeat;
height: 123px; /* height of the logo */
width: 123px; /* width of the logo */
}
by Bernard Paques on Oct. 4 2009










