Changing colors. To change color of the top block and menu you should update background-color the following CSS (stored in template.css):
#ja-header {
background-attachment: scroll;
background-color: #333333;
background-image: none;
background-position: 0% 0%;
background-repeat: repeat;
position: relative;
z-index: 10;
}
#ja-header .main {
background-color: #333333;
background-position: 100% 0%;
background-repeat: no-repeat;
height: 80px;
}
+ replace templates/ja_purity_ii/images/header-mask.png with new image, or create another one and update
.ja-headermask {
background-attachment: scroll;
background-color: transparent;
background-image: url(“http://justphp.net/templates/ja_purity_ii/images/header-mask.png”);
background-position: 100% 0%;
background-repeat: no-repeat;
display: block;
height: 80px;
position: absolute;
right: -1px;
top: 0px;
width: 602px;
z-index: 0;
}
Fro main menu update in template.css #ja-mainnav
Color of the links (change color: #333333; to your color):
a:hover, a:active, a:focus {
color: #333333;
text-decoration: underline;
}
and
/* Normal links —*/
a { color: #069; text-decoration: underline; }