Is there any simple way to decrease the white space between the menu bar and the slogan and between the slogan and the content?

Thank you.

Comments

Jeff Burnz’s picture

Yes, in page.css the whitespace is done with padding on the #branding wrapper, so you could reduce it with something like this:

#branding {
  padding-top: 15px;
  padding-bottom: 10px;
}
dimon00’s picture

Thank you. It worked.
Unfortunately I have the search form in the header region.
The search button is under the form and it takes a large amount of space.

Is there a way to place the button next to the form in order to save more space?

Regards

dimon00’s picture

I was able to do it by adding

.region-header #block-search-form input.form-text {
  width: 160px;
}

To a local.css file.