1. How do I decrease the margin between my logo/Tittle and menu to make it look good?
— There is margin because of your long site tagline. So, you can just decrease the width of the header right section where you have social icons and search box. Just add the following CSS in “Appearance => Theme Options => Custom CSS” box:
`#header .social-search { width: 250px; }`
2. How do I get rid of the search bar?
— Just add the following CSS in “Appearance => Theme Options => Custom CSS” box:
`#header .social-search form.searchform { display: none; }`
3. How do I change the background of the space above menu?
— You cannot just change the background above space above menu. You need to change whole header background. Just add the following CSS in “Appearance => Theme Options => Custom CSS” box:
`#header { background: none #cccccc; }`
4. How do I center the Logo, title, and Tagline?
— For this you need to hide the social icon and then add padding left.