Changing height of border at base of header (SOLVED)
Posted: Thu Sep 13, 2007 7:10 pm
Had a look in the old mssgs but to no avail, sure this is a very common question. In the header there is a small black border 5px high or so below the picture, I can change the colour but not the height in the code below. Anyone any idea where I can change
the thickness of the border. Thanks. the site for this is at http://www.sharp-shotz.com/index.php
the thickness of the border. Thanks. the site for this is at http://www.sharp-shotz.com/index.php
Code: Select all
/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
height: 126px; /* adjust according your image size */
background: #000000;
}
div#header h1 a {
/* you can set your own image here */
background: #ffffff url(images/cms/logo.gif) no-repeat 0 0px;
display: block;
height: 126px; /* adjust according your image size */
text-indent: -999em; /* this hides the text */
text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}