Page 1 of 1

Remove space above search box.

Posted: Mon Feb 26, 2007 7:16 pm
by duplay
I would like to remove the space above the search box so the search box and the breadcrumbs are on the same "horizontal line" (see pic) the red arrow points to the gap I would like to close - move search box up on page.


Thanks



MJD

[gelöscht durch Administrator]

Re: Remove space above search box.

Posted: Mon Feb 26, 2007 7:27 pm
by RonnyK
MJD,

change the width of the div#search. Make it a little bigger and it will fit the line again. I think because the width is too small, it goes one line down. Below is just an example value.....

Code: Select all

   width: 23em; 
Ronny

Re: Remove space above search box.

Posted: Mon Feb 26, 2007 7:43 pm
by cyberman
Have you something like this in your stylesheet?

Code: Select all

div#search {
   float: right;
   width: 23em;    /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}