Page 1 of 1

PostPosted: Tue Oct 10, 2006 7:21 am
by njw
Does the header image have to be the size it is by default? If not, how do I adjust it to be roghly half the depth it currently is? If you put a smaller image in, the rest of the space is filled with black. I have had a look at the css files and the template, but can't see any default size in there.

Many thanks

Neil

PostPosted: Tue Oct 10, 2006 12:25 pm
by shannah
This is also a stylesheet setting...

Look in the style.css file. You'll find a section as follows:

Code: Select all
#desc{
height:200px;
color:#ffffff;
padding:0;
background:#505050 url(images/front.jpg) top left no-repeat;
clear:both;
margin:5px 0 0 0;
}


Simply change the height to your desired height... this should work.

Or if you want to keep your stylesheet changes separate from the distro, you can create a new stylesheet with the following:
Code: Select all
#desc {
   height: 125px;
}


And include it after the style.css file is included.. this will override the height for that section.

Hope this helps.

-Steve

PostPosted: Tue Oct 10, 2006 12:28 pm
by njw
Thanks Steve. I did look, but I obviously missed it!

Neil

PostPosted: Tue Oct 10, 2006 2:44 pm
by shannah
The id #desc certainly is not an intuitive name for this section.. easy to miss.

Best regards

Steve