1. The green in the header is an image called green-head.png located in your ambergreen theme’s images folder. Create another png image sized 950px x 132px and name it green-head.png and upload to server per structure below
wp-content/themes/ambergreen/images/green-head.png
2. Black on the sides of the webpage is a repeating image named 5fade.png located also in your theme’s images folder. You can do the same as above.
wp-content/themes/ambergreen/images/5fade.png
or just delete the image entirely. Open up your theme’s style.css with text editor like notepad and find this:
body {
font: 12px/170% Arial, Helvetica, sans-serif ;
text-align: center;
background-color: #666666;
background-image: url(images/5fade.png);
background-repeat: repeat-x;
padding: 0px;
margin: 0px;
}
and change background-color: to whatever color you prefer and delete the line of background-image as well as background-repeat. e.g. for a white background without images in background
body {
font: 12px/170% Arial, Helvetica, sans-serif ;
text-align: center;
background-color: #ffffff;
padding: 0px;
margin: 0px;
}
3. The Investment Text Style – open up your theme’s style.css and find this:
#header h1#logo-text a {
color:#FFFFFF;
float:left;
left:35px;
margin:0;
padding:0;
position:absolute;
text-decoration:none;
top:55px;
}
add font declaration: w3c font reference e.g.
#header h1#logo-text a {
font: 16px italic Georgia,Times,serif;
color:#FFFFFF;
float:left;
left:35px;
margin:0;
padding:0;
position:absolute;
text-decoration:none;
top:55px;
}
4. Adding an image – what kind? You can add it via background or on the site’s header