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
.classname {
height:200px;
}
alternatively;
#idname {
height:200px;
}
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.
oh cool! this makes it so much easier than trying to decipher names
thanks for the replys!