Okay so first download this plug in: https://www.ads-software.com/plugins/simple-custom-css/
Then inside that plugin you want to add your custom CSS, CSS controls the layout of the page along with the colors of your text.
So inside that plugin you will be adding the selector “the name of the part you are trying to change and then what you want to change it to. To change your menu you are editing the rules on “#access a” so if you wanted to change the color to white for example you would add this to your css plug in:
“#access a {
color:#fff
}
To change the hovered color to black for example you would use:
#access a:hover {
color:#000;
}
To change your drop down menu to dark gray you’d use:
#access ul ul a {
color:#202020;
}
for the hover to black:
#access ul ul a:hover {
color:#000;
}
and so on. if you want to mess about with the colors just change it, this might be helpful to you: https://kuler.adobe.com/create/color-wheel/
Lastly your column text is controlled by “.column-text” so use something like:
.column-text {
color:#fff;
}
That should be enough to get you going mate, was there any other parts you wanted changing?
Dan