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]
Remove space above search box.
Re: Remove space above search box.
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.....
Ronny
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;
Re: Remove space above search box.
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;
}