Page 1 of 1

Re: how to remove margin space from template?

Posted: Mon Mar 24, 2008 5:08 pm
by Nullig
It looks like the image you're using is smaller than the space you've left for it - I'm guessing it's about 120px high.

Try changing these:

Code: Select all

div#header {
   height: 120px;    /* adjust according your image size */
   background: #FFB900;
}

div#header h1 a {
/* you can set your own image here */
   background: #FFB900 url(images/cms/logo1.gif) no-repeat 0 0;
   display: block;
   height: 120px;             /* 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 */
}
Nullig

Re: how to remove margin space from template?

Posted: Mon Mar 24, 2008 5:28 pm
by Nullig
Did you use the code exactly as I posted?

Nullig