Space on top of logo in Unite

How do I remove the space above the logo in this theme?

Hi @dawnbreaker1938,

I hope you are well today and thank you for your question.

You can remove that space by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Unite Options -> Other -> Custom CSS

.site-branding.col-md-6 {
    margin-top: 0;
}

Best Regards,
Movin

Thanks that works great for the top margin but I still have a margin at the bottom.

To remove the bottom margin try using the below CSS code.

.site-branding.col-md-6 {
    margin-bottom: 0;
}