@hendrik: Yes we will add the additional features in updates. The main addition to the Simple Catch theme is the Responsive Design and Featured Image Slider.
Solutions for your questions. You can add the css in your child theme style.css or in your theme theme options.
1. how do I change the color of the menu. Just change the color code in the below css.
/* For menu main background */
#access {
border:1px solid #ccc;
background-color:#fff;
}
/* For hover and current menu background */
#access ul li a:hover, #access ul li.current-menu-item a, #access ul li:hover > a {
background-color:#444;
}
/* For submenus menu background */
#access ul li ul li a:hover, #access ul li ul li:hover > a {
background-color:#333;
}
2. how do I change the color or background of the header
To change the background just change the image.
#branding {
background:url("images/bg-header.jpg") left bottom repeat-x;
}
To change the color and remove the background image. Just change the color code below:
#branding {
background: none left #000;
}
3. how can I increase the space between logo and site title. If you check my site http://69.89.31.69/~riceandc/ you see that it looks a bit strange. Just increase the padding left as below:
#site-title {
padding-left: 30px;
}