PDA

View Full Version : css header height



spyderfx
June 8th, 2008, 12:53 AM
hi everyone,

i'm trying to customize a wordpress theme. i figured out how to change the header to my header image, but I can't get it to display the whole thing, it gets cut off at the top half. i haven't found any code for CSS that tells it to change height, does anyone know how to do this?

thank you

sekasi
June 8th, 2008, 01:12 AM
.classname {
height:200px;
}

alternatively;

#idname {
height:200px;
}

djheru
June 8th, 2008, 10:00 AM
Get the firebug extension for firefox. then, when you load the page, you can hit f12 to display the firebug interface, press the "inspect" button and click on the header image to see what line in the css file is setting the dimensions. Then, you can change the css to set the proper dimensions and you should be all set.

spyderfx
June 8th, 2008, 08:06 PM
oh cool! this makes it so much easier than trying to decipher names

thanks for the replys!