Change default purple colour

Apologies for asking such a straight forward question but i was wondering how i change the menu and footer colours and remove the boxing around the menu items.

Hi @rdog,

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

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

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

#page .navbar-default .navbar-nav a {
    border: 0;
    box-shadow: none;
}
nav.navbar.navbar-default {
    background: #000;
}
footer#colophon {
    background-color: #000;
}

Please change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Best Regards,
Movin