Hi bananablh,
Firstly: change your username as right now it displays your email for everyone!
Now some help:
>>> 1. Child Theme not needed.
You don’t need a child theme IF you do only a few CSS changes in the CSS tab like suggested by Ivana, as the CSS tab is update safe for changes like this! ??
>>> 2. Change the Menu and Page Titles:
The correct CSS to change the menu is this:
#access a {
font-family: georgia;
font-weight: bold;
font-style: italic;
font-size: 18px;
color: deeppink;
}
/* Notes: just modify or remove the styles and customize to your needs!
the original style is defined for “#access a” this is why you should write it the same (or stronger) to override. Otherwise it will not work. */
/* Page Titles: */
h2.pagetitle, h2.posttitle {
color: deeppink;
font-family: georgia;
font-weight: bold;
font-style: italic;
font-size: 39px;
}
/* same as for the menu, take the original selector and modify it ?? */