Removing the Top Line

Hi, First of all thanks for the nice theme.
I couldnt find anything on the forum about removing the very first green line
on top of the page above the Title Space. How can I get rid of it or change its color?
Thank you!

@Dannyboy

You can change color of any theme element via WordPress dashboard - Appearance - Customize. THere are 15 different color pickers that you can use.

However, these options doesn’t allow to remove this green line entirely, so you can use this code instead via Theme Options - Other - Custom CSS.

body {
    border-top: none;
} 

Thank you very much Aigars!