Hi, Roberto:
The star icons in the menu and the half-colored post titles are the default behavior when you first install Montezuma.
You didn't say if you wanted the post titles to be all blue or all black. If you want the post titles to be all blue, then go to
Appearance > Montezuma Options > CSS Files > posts.css and look for this rule:
Code:
.hentry h2 a .firstpart,
.hentry h1 .firstpart {
color: #000000;
text-decoration: none;
}
Change the color value to #0090d3.
If you want the titles to be all black, then in the same virtual CSS file, look for this rule:
Code:
/* change on .hentry hover */
.hentry:hover h2 a .firstpart {
color: #0090d3;
}
Change the color value to #000000. Then add another rule:
Code:
.hentry h2 a {
color: #000000;
}